first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from typing import Optional
|
||||
|
||||
from app.core.crud import CRUDBase
|
||||
from app.models.admin import Menu
|
||||
from app.schemas.menus import MenuCreate, MenuUpdate
|
||||
|
||||
|
||||
class MenuController(CRUDBase[Menu, MenuCreate, MenuUpdate]):
|
||||
def __init__(self):
|
||||
super().__init__(model=Menu)
|
||||
|
||||
async def get_by_menu_path(self, path: str) -> Optional["Menu"]:
|
||||
return await self.model.filter(path=path).first()
|
||||
|
||||
|
||||
menu_controller = MenuController()
|
||||
Reference in New Issue
Block a user