blob: 8e209b80268836ce963703d7efeb6b18787294d0 [file] [log] [blame]
'use strict';
angular.module('xos.<%= name %>', [
'ngResource',
'ngCookies',
'ui.router',
'xos.helpers'
])
.config(($stateProvider) => {
$stateProvider
.state('user-list', {
url: '/',
template: '<users-list></users-list>'
});
})
.config(function($httpProvider){
$httpProvider.interceptors.push('NoHyperlinks');
})
.directive('usersList', function(){
return {
restrict: 'E',
scope: {},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'templates/users-list.tpl.html',
controller: function(Users){
// retrieving user list
Users.query().$promise
.then((users) => {
this.users = users;
})
.catch((e) => {
throw new Error(e);
});
}
};
});