Teams are part of organizations.
This commit is contained in:
parent
5838e1bc07
commit
6aeac247fa
1 changed files with 2 additions and 1 deletions
|
@ -216,7 +216,8 @@ def get_matching_entities(prefix):
|
||||||
def team_view(team):
|
def team_view(team):
|
||||||
return {
|
return {
|
||||||
'name': team.name,
|
'name': team.name,
|
||||||
'kind': 'team'
|
'kind': 'team',
|
||||||
|
'is_org_member': True,
|
||||||
}
|
}
|
||||||
|
|
||||||
def user_view(user):
|
def user_view(user):
|
||||||
|
|
Reference in a new issue