()
| 32 | } |
| 33 | |
| 34 | pub fn all() -> &'static [NotifyChannel] { |
| 35 | &[ |
| 36 | NotifyChannel::Discord, |
| 37 | NotifyChannel::Telegram, |
| 38 | NotifyChannel::Sms, |
| 39 | NotifyChannel::WhatsApp, |
| 40 | NotifyChannel::Call, |
| 41 | NotifyChannel::Email, |
| 42 | ] |
| 43 | } |
| 44 | |
| 45 | pub fn is_phone_based(&self) -> bool { |
| 46 | matches!( |
no outgoing calls
no test coverage detected