diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-03-29 18:07:14 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-29 18:07:14 +1300 |
commit | c6a1dc961500b62379b70b8629fc5c8da688db0b (patch) | |
tree | 2426a533e16e8928d85b1353af72be6dd4334e75 /web/app/view/permissions/UserUsers.js | |
parent | f78c547cdda0180a16bf76ddd7395d57dfc49016 (diff) | |
parent | 90863dfff06243e062fa4442245aa210eade198c (diff) | |
download | trackermap-web-c6a1dc961500b62379b70b8629fc5c8da688db0b.tar.gz trackermap-web-c6a1dc961500b62379b70b8629fc5c8da688db0b.tar.bz2 trackermap-web-c6a1dc961500b62379b70b8629fc5c8da688db0b.zip |
Merge pull request #455 from Abyss777/move_permissions
Move permissions windows to subfolder
Diffstat (limited to 'web/app/view/permissions/UserUsers.js')
-rw-r--r-- | web/app/view/permissions/UserUsers.js | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/web/app/view/permissions/UserUsers.js b/web/app/view/permissions/UserUsers.js new file mode 100644 index 00000000..abef700a --- /dev/null +++ b/web/app/view/permissions/UserUsers.js @@ -0,0 +1,31 @@ +/* + * Copyright 2017 Anton Tananaev (anton@traccar.org) + * Copyright 2017 Andrey Kunitsyn (andrey@traccar.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +Ext.define('Traccar.view.permissions.UserUsers', { + extend: 'Traccar.view.permissions.Base', + xtype: 'userUsersView', + + columns: { + items: [{ + text: Strings.sharedName, + dataIndex: 'name', + flex: 1, + minWidth: Traccar.Style.columnWidthNormal + }] + } +}); |