| author | ymh <ymh.work@gmail.com> |
| Wed, 28 Nov 2018 15:45:37 +0100 | |
| changeset 180 | 62bffc051e1c |
| 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"] |