You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a pretty involved ticket, you'll have a decent amount of direction in how you want to implement it, but I can give assistance as needed.
We basically need a way on the admin side for the admin to send emails to volunteers that the volunteers then sign up with.
That is to say, we need a way for the admin to send signup links that allow only specific volunteers with those emails to create an account.
Acceptance Criteria
Admin Functionality:
An admin interface exists where admins can input one or more volunteer email addresses. Does not have to be fleshed out, just a way to test the functionality for now. Can literally be a basic HTML form.
Admins can submit the emails to generate unique sign-up links.
Database Management:
Each email is associated with a unique token stored in the database.
Tokens have an expiration time (e.g., 24 hours).
Tokens are invalidated or deleted after use.
Volunteer Flow:
Volunteers receive an email with a sign-up link.
Clicking the link pre-fills the email field on the sign-up page and validates the token.
Volunteers can create their accounts only if the token is valid.
Implementation Notes
This is a SUPER involved and pretty difficult ticket, don't worry about necessarily getting this done in one sprint.
The backend will have an endpoint to acept email addresses from the admin that then generates unique tokens.
Then use an email service to send a sign-up link with the token that can then be used to create an account. You have to extract the token from the link when the volunteer goes to make the account from the link. Then if everything is good, let them make an account.
Don't worry too much about edge cases for now, and focus on the backend endpoint logic for now, we will come back to the frontend details later. But you may have to create basic HTML forms just to validate all the logic.
The text was updated successfully, but these errors were encountered:
Description
Acceptance Criteria
Admin Functionality:
Database Management:
Volunteer Flow:
Implementation Notes
The text was updated successfully, but these errors were encountered: