8 lines
259 B
JavaScript
8 lines
259 B
JavaScript
|
/**
|
||
|
* Service which provides the OAuth scopes defined.
|
||
|
*/
|
||
|
angular.module('quay').factory('OAuthService', ['$location', 'Config', function($location, Config) {
|
||
|
var oauthService = {};
|
||
|
oauthService.SCOPES = window.__auth_scopes;
|
||
|
return oauthService;
|
||
|
}]);
|