Exemple #1
0
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(
        role) if "@" in role else get_deployment_by_domain(role)
Exemple #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)
Exemple #3
0
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)
Exemple #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)