-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validate Ministry User #3881
Labels
Ministry
Ministry Features
Comments
dheepak-aot
added a commit
that referenced
this issue
Nov 19, 2024
github-merge-queue bot
pushed a commit
that referenced
this issue
Nov 25, 2024
# Validate user account for all routes ## New global guard and decorator - [x] New guard `RequiresUserAccountGuard` has been introduced globally to ensure that routes are authorized with the user token which belongs to valid SIMS user. There are exceptional routes like public routes and routes used that setup the user itself are skipped from this validation. - [x] New decorator `@RequiresUserAccount()` is introduced to get the metadata context for the guard. ## Student page container - [x] Student page container updated to NOT render restriction and SIN banners for pages which does not require a valid student account. ## E2E Tests - [x] The existing method to mock the student info from token `mockUserLoginInfo()` does not have a way to restore the mock, if the mock needs to be restored for other tests in same suite. Hence refactored the code to use `jest.spyOn()` to mock the userService method implementation and also created a reset mock method to reset the mock as required in the test suite. Here is an example. **Mock applied**  **Mock Reset**  - [x] Created new Auth E2E tests  ## Volar extension - [x] Updated the workspace file with deprecated vue extension by replacing with recommended extension. 
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
User Story:
As SIMS, we need to validate that all ministry users have user profiles, otherwise they should not be able to function in the app.
Acceptance Criteria:
users
table).Context:
Technical
RequiresStudentAccountGuard
as a reference and theRequiresStudentAccount
as a decorator reference to allow certain endpoints to be reach even without a user created, for instance, for the endpoints actually creating the user.auth.e2e-spec.ts
.The text was updated successfully, but these errors were encountered: