feat: implement audit logging for admin actions and order lifecycle events`#674
Open
saidai-bhuvanesh wants to merge 5 commits into
Open
feat: implement audit logging for admin actions and order lifecycle events`#674saidai-bhuvanesh wants to merge 5 commits into
saidai-bhuvanesh wants to merge 5 commits into
Conversation
added 5 commits
June 5, 2026 12:31
|
Someone is attempting to deploy a commit to the adithyansubramani1-1657's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Summary:
Implements a secure, structured audit trail for all critical admin actions to improve accountability, security investigations, and order traceability. Every audit event is written in a fire-and-forget manner so it can never block or fail a user-facing request.
Changes:
api/models/AuditLog.js(new)api/services/auditService.js(new)api/controllers/adminController.jsADMIN_LOGINandADMIN_LOGIN_FAILEDon every auth attemptapi/controllers/orderController.jsPAYMENT_CONFIRMEDandORDER_STATUS_CHANGEDafter each actionapi/routes/adminRoutes.jsGET /api/admin/audit-logsprotected byadminAuthTesting:
ADMIN_LOGINaudit entry written on successful loginADMIN_LOGIN_FAILEDaudit entry written on bad credentialsGET /api/admin/audit-logsreturns structured logs for authenticated adminGET /api/admin/audit-logsreturns401for unauthenticated requests