mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-16 04:43:13 -05:00
* remove dead backup code * implmenet own base model * refactor to use MealieModel instead of CamelModel * cleanup deps
11 lines
219 B
Python
11 lines
219 B
Python
from pydantic import UUID4
|
|
|
|
from mealie.schema._mealie import MealieModel
|
|
|
|
|
|
class SetPermissions(MealieModel):
|
|
user_id: UUID4
|
|
can_manage: bool = False
|
|
can_invite: bool = False
|
|
can_organize: bool = False
|