| 43 | |
| 44 | |
| 45 | class AllowlistImportForm(StarletteForm): |
| 46 | emails = TextAreaField( |
| 47 | _l("Email addresses (one per line or comma-separated)"), |
| 48 | validators=[DataRequired()], |
| 49 | ) |
| 50 | submit = SubmitField(_l("Import"), name="allowlist_import") |
| 51 | |
| 52 | |
| 53 | class RegistryImageActionForm(StarletteForm): |
nothing calls this directly
no outgoing calls
no test coverage detected