13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
|
(function() {
|
||
|
/**
|
||
|
* Page which displays the list of organizations of which the user is a member.
|
||
|
*/
|
||
|
angular.module('quayPages').config(['pages', function(pages) {
|
||
|
pages.create('organizations', 'organizations.html', OrgsCtrl);
|
||
|
}]);
|
||
|
|
||
|
function OrgsCtrl($scope, UserService) {
|
||
|
UserService.updateUserIn($scope);
|
||
|
browserchrome.update();
|
||
|
}
|
||
|
})();
|