| author | ymh <ymh.work@gmail.com> |
| Thu, 29 Jul 2021 16:46:20 +0200 | |
| changeset 207 | c39d91bd16af |
| parent 119 | 8ff8e2aee0f9 |
| permissions | -rw-r--r-- |
| 31 | 1 |
""" |
2 |
Permissions classes fro notes |
|
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 | 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"] |