소스 검색

not permission to state

Erwin Jacimino 3 달 전
부모
커밋
8eec8e0512
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      routes/store.py

+ 1 - 1
routes/store.py

@@ -35,5 +35,5 @@ def get_table_exists(q: str = Query(..., description="q parameter")):
     return success_response({"exists": exist}, status_code=200)
 
 @store_router.get("/state", response_class=JSONResponse)
-def get_store_state(_: User = Depends(get_current_user)):
+def get_store_state():
     return success_response(data={"state": settings.IS_OPEN_STORE})