UNPKG

uxess

Version:

Generic authorization module for role-based handling of ui elements

19 lines (14 loc) 297 B
/*! * @author Felix Heck <hi@whoTheHeck.de> * @version 0.1.2 * @copyright Felix Heck 2016 * @license MIT */ ;(function() { 'use strict'; angular.module('uxs').constant('uxsAUTH_TYPES', { 'any': 'hasAnyPermits', 'all': 'hasAllPermits', 'none': 'hasNonePermits' }); })();