Add AJOIN ADDALL to auto-join every channel you are currently in
All checks were successful
CI / check (push) Successful in 5m32s

This commit is contained in:
Jean Chevronnet 2026-07-20 19:40:02 +00:00
parent 6e53cb751a
commit b500698e82
No known key found for this signature in database
10 changed files with 52 additions and 11 deletions

View file

@ -615,6 +615,9 @@ impl NetView for Network {
fn uids_logged_into(&self, account: &str) -> Vec<String> {
Network::uids_logged_into(self, account)
}
fn channels_of(&self, uid: &str) -> Vec<String> {
Network::channels_of(self, uid)
}
fn is_op(&self, channel: &str, uid: &str) -> bool {
Network::is_op(self, channel, uid)
}