feat: add challenge and red-blue competitions across API and web

This commit is contained in:
Joey Yakimowich-Payne 2025-10-01 06:49:09 -06:00
commit 8fd3c4bb64
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
77 changed files with 5355 additions and 24 deletions

View file

@ -24,12 +24,15 @@ from . import (
files,
forgot_password,
login,
register,
message,
passport,
remote_files,
saved_message,
site,
workflow,
challenges,
red_blue_challenges,
)
api.add_namespace(web_ns)
@ -45,6 +48,7 @@ __all__ = [
"files",
"forgot_password",
"login",
"register",
"message",
"passport",
"remote_files",
@ -52,4 +56,6 @@ __all__ = [
"site",
"web_ns",
"workflow",
"challenges",
"red_blue_challenges",
]