Skip to content

Commit 490dcf7

Browse files
Merge pull request #26 from StreetSupport/feature/3011-build-user-management-interface
Fix wrong path
2 parents 699b5a2 + 6e1cb88 commit 490dcf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controllers/userController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { decryptUserEmail, encryptEmail } from '../utils/encryption.js';
66
import { validateCreateUser, validateUpdateUser } from '../schemas/userSchema.js';
77
import { createAuth0User, deleteAuth0User, blockAuth0User, unblockAuth0User, updateAuth0UserRoles } from '../services/auth0Service.js';
88
import { sendSuccess, sendCreated, sendNotFound, sendBadRequest, sendInternalError, sendPaginatedSuccess, sendForbidden } from '../utils/apiResponses.js';
9-
import { ROLE_PREFIXES, ROLES } from 'constants/roles.js';
9+
import { ROLE_PREFIXES, ROLES } from '../constants/roles.js';
1010

1111
// @desc Get all users with optional filtering and search
1212
// @route GET /api/users

0 commit comments

Comments
 (0)