Method
__init__
(self, *args, project: Project, domains: list[Domain], **kwargs)
Source from the content-addressed store, hash-verified
| 358 | confirm = StringField(_l("Confirmation"), validators=[DataRequired()]) |
| 359 | |
| 360 | def __init__(self, *args, project: Project, domains: list[Domain], **kwargs): |
| 361 | super().__init__(*args, **kwargs) |
| 362 | self.project = project |
| 363 | self.domains = domains |
| 364 | |
| 365 | def validate_domain_id(self, field): |
| 366 | domain = next( |
Callers
nothing calls this directly
Tested by
no test coverage detected