src/notes/api/permissions/__init__.py
author ymh <ymh.work@gmail.com>
Thu, 29 Jul 2021 16:46:20 +0200
changeset 207 c39d91bd16af
parent 119 8ff8e2aee0f9
permissions -rw-r--r--
update dependencies and create new version
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31
63be3ce389f7 improve api
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
"""
63be3ce389f7 improve api
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
Permissions classes fro notes
63be3ce389f7 improve api
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
"""
119
8ff8e2aee0f9 add parameter to filter session and note by updated date. Add pagination on sessions and notes. add read only endpoint at root level to list notes
ymh <ymh.work@gmail.com>
parents: 117
diff changeset
     4
from .core import SessionPermission, NotePermission, RootNotePermission
117
9864fe2067cd Add api endpoints for group management
ymh <ymh.work@gmail.com>
parents: 31
diff changeset
     5
from .auth import GroupPermission
31
63be3ce389f7 improve api
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
119
8ff8e2aee0f9 add parameter to filter session and note by updated date. Add pagination on sessions and notes. add read only endpoint at root level to list notes
ymh <ymh.work@gmail.com>
parents: 117
diff changeset
     7
__all__ = ["SessionPermission", "NotePermission", "GroupPermission", "RootNotePermission"]