generator-gae-angular-material-starter
Version:
Google App Engine Angular Material Starter generator
13 lines (10 loc) • 363 B
JavaScript
(function() {
'use strict';
var module = angular.module('admin');
module.controller('AdminController', function(gaAuthentication, gaToast, gaBrowserHistory) {
if (!gaAuthentication.isAdmin()) {
gaToast.show('Sorry, you don\'t have permissions to access those pages');
gaBrowserHistory.back();
}
});
}());