blob: 838efa0bebc097b516b04646b7fc34ddffb3b6ec [file] [log] [blame]
'use strict';
angular.module('xos.subscribers', [
'ngResource',
'ngCookies',
'ui.router',
'xos.helpers'
])
.config(($stateProvider) => {
$stateProvider
.state('user-list', {
url: '/',
template: '<subscribers-list></subscribers-list>'
});
})
.config(function($httpProvider){
$httpProvider.interceptors.push('NoHyperlinks');
})
.directive('subscribersList', function(){
return {
restrict: 'E',
scope: {},
bindToController: true,
controllerAs: 'vm',
templateUrl: 'templates/subscribers-list.tpl.html',
controller: function(){
this.smartTableConfig = {
resource: 'Subscribers'
};
this.model = {
label: {
name: 'aaa'
},
empty: {}
}
this.config = {
exclude: ['password', 'last_login'],
formName: 'sampleForm',
actions: [
{
label: 'Save',
icon: 'ok', // refers to bootstraps glyphicon
cb: (user) => { // receive the model
console.log(user);
},
class: 'success'
}
]
};
}
};
});