示例#1
0
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(
        role) if "@" in role else get_deployment_by_domain(role)
示例#2
0
def get_deployment_or_userprofile(role):
    # type: (text_type) -> Union[UserProfile, Deployment]
    return get_user_profile_by_email(
        role) if "@" in role else get_deployment_by_domain(role)
示例#3
0
文件: decorator.py 项目: anteq/zulip
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)
示例#4
0
def get_deployment_or_userprofile(role):
    # type: (text_type) -> Union[UserProfile, Deployment]
    return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)