UNPKG

generator-gae-angular-material-starter

Version:
13 lines (10 loc) 363 B
(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(); } }); }());