def they_can_delete_standardtekster(user, they): if is_administrator(user): they.can(DELETE, 'StandardTekst')
def they_can_put_standardtekster(user, they): if is_administrator(user): they.can(PUT, 'StandardTekst')
def they_can_put_tilskuddsordninger(user, they): if is_administrator(user): they.can(PUT, 'Tilskuddsordning')
def they_can_get_standardtekster(user, they): if is_saksbehandler(user) or is_administrator(user): they.can(GET, 'StandardTekst')
def they_can_get_tilskuddsordninger(user, they): if is_administrator(user) or is_saksbehandler(user) or is_godkjenner(user): they.can(GET, 'Tilskuddsordning') elif is_soker(user): they.can(GET, 'Tilskuddsordning', if_tilskuddsordning_is_published)