We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e8c19 commit f7b4006Copy full SHA for f7b4006
src/murfey/server/api/auth.py
@@ -25,7 +25,10 @@
25
logger = getLogger("murfey.server.api.auth")
26
27
# Set up router
28
-router = APIRouter(tags=["Authentication"])
+router = APIRouter(
29
+ prefix="/auth",
30
+ tags=["Authentication"],
31
+)
32
33
34
class CookieScheme(HTTPBearer):
src/murfey/server/api/clem.py
@@ -31,7 +31,10 @@
logger = getLogger("murfey.server.api.clem")
# Create APIRouter class object
-router = APIRouter(tags=["Workflows: CLEM"])
35
+ prefix="/workflow/clem",
36
+ tags=["Workflows: CLEM"],
37
38
39
# Valid file types
40
valid_file_types = (
0 commit comments