Fixes#314
Merged
Merged
Conversation
This was
linked to
issues
May 15, 2026
Closed
Closed
Closed
1afb1b8 to
a866c10
Compare
a866c10 to
58a0129
Compare
cmyers-mieweb
approved these changes
May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migration
Copilot Summary
This pull request introduces two main improvements: enhanced error handling across all major routes by standardizing error messages with a utility function, and some minor UI/UX and configuration enhancements. The error handling changes will make it easier to debug issues and provide more consistent feedback to users. Additionally, there are updates to the sidebar's responsive behavior and a new configuration option for access log output.
Error handling improvements:
containers.js,external-domains.js,groups.js,nodes.js,register.js,sites.js,users.js) now use a newformatSequelizeErrorutility to standardize error messages displayed to users after failed database operations. This affects create, update, and delete actions, as well as user registration and invitations. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27]UI/UX and configuration enhancements:
loadSitesmiddleware now loads and exposes a push notification URL setting to all views, making it easier to display links like "MFA Admin" in the sidebar. [1] [2] [3]ACCESS_LOGenvironment variable inexample.envand updated the server to optionally write access logs to a file instead of stdout. [1] [2] [3]