feat: billing guest access
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
from fastapi import APIRouter
|
||||
from fastapi import APIRouter, Depends
|
||||
|
||||
from backend.dependecies import SessionDependency
|
||||
from schemas.position import *
|
||||
from services.auth import authorized_user
|
||||
from services.position import PositionService
|
||||
|
||||
position_router = APIRouter(
|
||||
prefix="/position",
|
||||
tags=["position"]
|
||||
tags=["position"],
|
||||
dependencies=[Depends(authorized_user)]
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user