Skip to content

Commit

Permalink
[seaserv] add get_emailuser_with_import api
Browse files Browse the repository at this point in the history
  • Loading branch information
jyelee committed Oct 24, 2015
1 parent ae86145 commit c4a6fff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/seaserv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
from service import send_command, check_quota, web_get_access_token, \
unset_repo_passwd, get_user_quota_usage, get_user_share_usage, \
get_user_quota
from service import get_emailusers, count_emailusers, get_session_info
from service import get_emailusers, count_emailusers, get_session_info, \
get_emailuser_with_import
from service import get_org_groups, get_personal_groups_by_user, \
get_group_repoids, get_personal_groups, list_share_repos, remove_share, \
check_group_staff, remove_group_user, get_group, get_org_id_by_group, \
Expand Down
3 changes: 3 additions & 0 deletions python/seaserv/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ def count_emailusers():
ret = -1
return 0 if ret < 0 else ret

def get_emailuser_with_import(email):
return ccnet_threaded_rpc.get_emailuser_with_import(email)

def get_session_info():
return ccnet_rpc.get_session_info()

Expand Down

0 comments on commit c4a6fff

Please sign in to comment.