is_joinable -> join_rule

This commit is contained in:
Luke Barnard 2018-04-05 16:31:57 +01:00
parent f8d1917fce
commit ae85c7804e
2 changed files with 2 additions and 5 deletions

View file

@ -57,15 +57,12 @@ class GroupServerStore(SQLBaseStore):
},
retcols=(
"name", "short_description", "long_description",
"avatar_url", "is_public", "is_joinable",
"avatar_url", "is_public", "join_rule",
),
allow_none=True,
desc="get_group",
)
if ret and 'is_joinable' in ret:
ret['is_joinable'] = bool(ret['is_joinable'])
defer.returnValue(ret)
def get_users_in_group(self, group_id, include_private=False):