mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-14 22:35:17 -05:00
12 lines
258 B
Python
12 lines
258 B
Python
from pydantic import UUID4
|
|
|
|
from mealie.schema._mealie import MealieModel
|
|
|
|
|
|
class SetPermissions(MealieModel):
|
|
user_id: UUID4
|
|
can_manage_household: bool = False
|
|
can_manage: bool = False
|
|
can_invite: bool = False
|
|
can_organize: bool = False
|