(session: dict = Depends(get_admin_session))
| 59 | |
| 60 | @admin_api.get("/verify") |
| 61 | async def verify_admin(session: dict = Depends(get_admin_session)): |
| 62 | return APIResponse(detail=session) |
| 63 | |
| 64 | |
| 65 | @admin_api.post("/logout") |
nothing calls this directly
no test coverage detected