feriennet.policy ================ .. py:module:: feriennet.policy Attributes ---------- .. autoapisummary:: feriennet.policy.T Classes ------- .. autoapisummary:: feriennet.policy.ActivityQueryPolicy Module Contents --------------- .. py:data:: T .. py:class:: ActivityQueryPolicy(username: str | None, role: str | None) Limits activity queries depending on the current user. .. py:attribute:: username .. py:attribute:: role .. py:method:: for_identity(identity: morepath.authentication.Identity | morepath.authentication.NoIdentity | None) -> Self :classmethod: .. py:method:: granted_subset(query: sqlalchemy.orm.Query[T]) -> sqlalchemy.orm.Query[T] Limits the given activites query for the given user. .. py:method:: public_subset(query: sqlalchemy.orm.Query[T]) -> sqlalchemy.orm.Query[T] Limits the given query to activites meant for the public. .. py:method:: private_subset(query: sqlalchemy.orm.Query[T]) -> sqlalchemy.orm.Query[T] Limits the given query to activites meant for admins/owners. Admins see all the states and owners see the states of their own.