Method
__init__
(self, *args, db: AsyncSession, team: Team, project: Project, **kwargs)
Source from the content-addressed store, hash-verified
| 483 | ) |
| 484 | |
| 485 | def __init__(self, *args, db: AsyncSession, team: Team, project: Project, **kwargs): |
| 486 | super().__init__(*args, **kwargs) |
| 487 | self.db = db |
| 488 | self.team = team |
| 489 | self.project = project |
| 490 | |
| 491 | async def async_validate_name(self, field): |
| 492 | if self.db and self.team and self.project: |
Callers
nothing calls this directly
Tested by
no test coverage detected