mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 12:34:17 +00:00
12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
'use strict';
|
|
|
|
angular.module('dssWebApp')
|
|
.constant('STORAGE', {
|
|
authBackend: 'dss_at_backend',
|
|
authToken: 'dss_at_token',
|
|
authServerToken: 'dss_at_server_token',
|
|
authLocalToken: 'dss_at_local_token',
|
|
authServerSession: 'dss_at_server_session',
|
|
authRefreshToken: 'refresh_token'
|
|
});
|