mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 13:36:02 -04:00
Add beginnings of ban support.
This commit is contained in:
parent
865469f233
commit
db7109c43b
8 changed files with 122 additions and 29 deletions
|
@ -23,7 +23,8 @@ class Membership(object):
|
|||
JOIN = u"join"
|
||||
KNOCK = u"knock"
|
||||
LEAVE = u"leave"
|
||||
LIST = (INVITE, JOIN, KNOCK, LEAVE)
|
||||
BAN = u"ban"
|
||||
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
|
||||
|
||||
|
||||
class Feedback(object):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue