mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 20:44:34 +00:00
10 lines
183 B
JavaScript
Executable File
10 lines
183 B
JavaScript
Executable File
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.constant('USER_ROLES', {
|
|
admin: 'admin',
|
|
editor: 'staff',
|
|
homepage: 'homepage',
|
|
guest: 'guest'
|
|
});
|