diff --git a/backend/db/migrations/20260406181406-rename-settings-to-system-settings.js b/backend/db/migrations/20260406181406-rename-settings-to-system-settings.js new file mode 100644 index 000000000..271ac8637 --- /dev/null +++ b/backend/db/migrations/20260406181406-rename-settings-to-system-settings.js @@ -0,0 +1,20 @@ +'use strict'; + +/** @type {import('sequelize-cli').Migration} */ +module.exports = { + async up(queryInterface, Sequelize) { + await queryInterface.sequelize.query(` + UPDATE nav_element + SET name = 'System Settings' + WHERE name = 'Settings'; + `); + }, + + async down(queryInterface, Sequelize) { + await queryInterface.sequelize.query(` + UPDATE nav_element + SET name = 'Settings' + WHERE name = 'System Settings'; + `); + } +}; diff --git a/frontend/src/components/dashboard/navigation/Sidebar.vue b/frontend/src/components/dashboard/navigation/Sidebar.vue index a29ac7d42..a1fb1838b 100644 --- a/frontend/src/components/dashboard/navigation/Sidebar.vue +++ b/frontend/src/components/dashboard/navigation/Sidebar.vue @@ -1,39 +1,140 @@