1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00

Fixed bug and clean code in service.py

This commit is contained in:
xiez
2012-09-22 19:28:49 +08:00
parent db365fc35d
commit 91aa8aa023

View File

@@ -119,12 +119,7 @@ def get_personal_groups_by_user(email):
except SearpcError: except SearpcError:
return [] return []
personal_groups = [] return [ x for x in groups_all if not is_org_group(x.id) ]
for group in groups_all:
if not is_org_group(group.id):
personal_groups.append(group)
return personal_groups
# group user # group user
def is_group_user(group_id, user): def is_group_user(group_id, user):
@@ -187,12 +182,7 @@ def get_org_groups_by_user(org_id, user):
except SearpcError: except SearpcError:
return [] return []
org_groups = [] return [ x for x in groups_all if org_id == get_org_id_by_group(x.id) ]
for group in groups_all:
if org_id == ccnet_threaded_rpc.get_org_id_by_group(group.id):
org_groups.append(group)
return org_groups
# org # org
def create_org(org_name, url_prefix, username): def create_org(org_name, url_prefix, username):