blob: 1909cce2e3cd18c3a6f330e8e7f8de4770c2d467 [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'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){
this.tableConfig = {
columns: [
{
label: 'E-Mail',
prop: 'email'
},
{
label: 'First Name',
prop: 'firstname'
},
{
label: 'Last Name',
prop: 'lastname'
},
{
label: 'Created',
prop: 'created'
},
{
label: 'Is Admin',
prop: 'is_admin'
}
]
};
// retrieving user list
Users.query().$promise
.then((users) => {
this.users = users;
})
.catch((e) => {
throw new Error(e);
});
}
};
});