12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- angular.module('luticate')
- .controller('UsersController', ['$scope', 'luticateAuthUsers',
- function($scope, luticateAuthUsers) {
-
- $scope.luTable = {
- columns: [
- {
- name: "Username",
- width: 3,
- getValue: function (item) {
- return item.Username;
- }
- }, {
- name: "Email",
- width: 3,
- getValue: function (item) {
- return item.Email;
- }
- }, {
- name: "Firstname",
- width: 3,
- getValue: function (item) {
- return item.Firstname;
- }
- }, {
- name: "Lastname",
- width: 3,
- getValue: function (item) {
- return item.Lastname;
- }
- }
- ],
-
- canAdd: 'LU_USER_ADD',
-
- canDel: 'LU_USER_DEL',
-
- canEdit: function()
- {
- return true;
- },
-
- getLoadPagePromise: function (page, perPage, query, promise) {
- return luticateAuthUsers.getAll({page: page, perPage: perPage, query: query}, promise);
- },
-
- getDelPromise: function (id, promise) {
- return luticateAuthUsers.del({user_id: id}, promise);
- },
-
- getEditController: function () {
- return "UserEdit";
- }
- };
- }]);
|