Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.16
v0.0.17
4 changes: 2 additions & 2 deletions View/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
{key: 'isArchived', operator: '<>', value: 1},
],
dblclick: function(event, table, dt, node, data){
window.location.href = "/plugin/users/details?id=" + data.id + "&name=" + data.username;
window.location.href = "/security/users/details?id=" + data.id + "&name=" + data.username;
},
actions: {
details:{
label:'Details',
icon:'eye',
action:function(event, table, dt, node, row, data){
window.location.href = "/plugin/users/details?id=" + data.id + "&name=" + data.username;
window.location.href = "/security/users/details?id=" + data.id + "&name=" + data.username;
}
},
reset:{
Expand Down
2 changes: 1 addition & 1 deletion info.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "LaswitchTech",
"email": "support@laswitchtech.com",
"date": "2025-10-01",
"version": "v0.0.16",
"version": "v0.0.17",
"tags": "users, management, authentication, roles, permissions",
"description": "This plugin provides user management capabilities, including authentication, role-based access control, and user profile management. It allows for the creation, modification, and deletion of users, as well as the assignment of roles and permissions to control access to various parts of the system.",
"repository": "https://github.com/LaswitchTech/core-plugin-users",
Expand Down
10 changes: 5 additions & 5 deletions routes.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/plugin/users": {
"/security/users": {
"template": "panel.php",
"view": "index.php",
"public": false,
Expand All @@ -9,21 +9,21 @@
"security"
],
"level": 1,
"parent": "/plugin/security",
"parent": "/security",
"label": "Users",
"icon": "person",
"color": null
},
"/plugin/users/details": {
"/security/users/details": {
"template": "panel.php",
"view": "details.php",
"public": false,
"action": null,
"location": [],
"level": 0,
"parent": null,
"parent": "/security/users",
"label": "User Details",
"icon": "person",
"color": null
}
}
}