alitheg commented on code in PR #1376:
URL:
https://github.com/apache/tooling-trusted-releases/pull/1376#discussion_r3578341881
##########
atr/admin/__init__.py:
##########
@@ -680,6 +685,228 @@ async def catalog_remove_post(
return await session.redirect(catalog_committee_get,
committee_key=str(committee_key))
+_CATALOG_PREVIEW_LIMIT: Final[int] = 50
+
+
+class CatalogImportForm(form.Form):
+ projects: form.File = form.label("Projects CSV", "Optional.")
+ releases: form.File = form.label("Releases CSV", "Optional.")
+ artifacts: form.File = form.label("Artifacts CSV", "Optional.")
+ additive: bool = form.label(
Review Comment:
Ah, valid. Yes we should consider a lint for it as a possibility. I've
reversed the logic so it's now checked == overwrite
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]