92
92
def service_get_all(context, disabled=False):
93
"""Get all service."""
94
return IMPL.service_get_all(context, None, disabled)
93
"""Get all services."""
94
return IMPL.service_get_all(context, disabled)
97
97
def service_get_all_by_topic(context, topic):
660
def auth_destroy_token(context, token):
660
def auth_token_destroy(context, token_id):
661
661
"""Destroy an auth token."""
662
return IMPL.auth_destroy_token(context, token)
665
def auth_get_token(context, token_hash):
662
return IMPL.auth_token_destroy(context, token_id)
665
def auth_token_get(context, token_hash):
666
666
"""Retrieves a token given the hash representing it."""
667
return IMPL.auth_get_token(context, token_hash)
670
def auth_create_token(context, token):
667
return IMPL.auth_token_get(context, token_hash)
670
def auth_token_update(context, token_hash, values):
671
"""Updates a token given the hash representing it."""
672
return IMPL.auth_token_update(context, token_hash, values)
675
def auth_token_create(context, token):
671
676
"""Creates a new token."""
672
return IMPL.auth_create_token(context, token)
677
return IMPL.auth_token_create(context, token)
675
680
###################