We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Make Enums for user and staff. then make protected route for staff and user
frontend -> enum(new folder) -> route enums.ts
const AccessLevel = { USER: "user", STAFF: "staff", };
export default AccessLevel;
frontend -> firebase -> ProtectedRoute.tsx frontend -> firebase -> staffAuth
Basically just do this from VPS project: https://github.com/UoaWDCC/VPS/tree/master/frontend/src/firebase
https://github.com/UoaWDCC/VPS/tree/master/frontend/src/firebase
The text was updated successfully, but these errors were encountered:
jerry2005hn
Successfully merging a pull request may close this issue.
Description:
Make Enums for user and staff. then make protected route for staff and user
New enums
frontend -> enum(new folder) -> route enums.ts
const AccessLevel = {
USER: "user",
STAFF: "staff",
};
export default AccessLevel;
Protected Route
frontend -> firebase -> ProtectedRoute.tsx
frontend -> firebase -> staffAuth
Basically just do this from VPS project: https://github.com/UoaWDCC/VPS/tree/master/frontend/src/firebase
Definition of Done:
Notes / Links
https://github.com/UoaWDCC/VPS/tree/master/frontend/src/firebase
The text was updated successfully, but these errors were encountered: