Skip to content
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

#744 Added mail service for resend #772

Merged
merged 20 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into 744-resend-mail-service
  • Loading branch information
cl3vy authored Jan 20, 2025
commit b7008192cb9ca0bc169f38d80f72cb20ef1e1c04
2 changes: 1 addition & 1 deletion services/py-api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion services/py-api/src/database/model/participant_model.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from dataclasses import dataclass, field
from datetime import datetime
from typing import Dict, Any, Optional
from typing import Dict, Any, Optional, Union


from pydantic import EmailStr
from src.database.model.base_model import BaseDbModel, SerializableObjectId, UpdateParams
Expand Down
3 changes: 1 addition & 2 deletions services/py-api/src/server/exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ class ParticipantNotFoundError(CustomError):
class EmailRateLimitExceededError(Exception):
"""Exception raised when email rate limit has been exceeded"""


class TeamNotFoundError(Exception):
class TeamNotFoundError(CustomError):
"""Exception raised when there are no teams that match the query to the database"""

message = "The specified team was not found"
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.