File tree Expand file tree Collapse file tree 3 files changed +28
-255
lines changed Expand file tree Collapse file tree 3 files changed +28
-255
lines changed Original file line number Diff line number Diff line change
1
+ ``annotator.authz.acl `` module
2
+ ==============================
3
+
4
+ This module configures an authorization policy which grants or denies permission
5
+ on objects (especially annotations) based on the presence of ``permissions `` or
6
+ ``user `` properties on the objects.
7
+
8
+ See :func: `annotator.authz.acl ` for full API documentation.
Original file line number Diff line number Diff line change
1
+ ``annotator.identity.simple `` module
2
+ =====================================
3
+
4
+ This module configures an identity policy which considers the identity of the
5
+ current user to be an opaque identifier. By default the identity is
6
+ unconfigured, but can be set.
7
+
8
+ Example
9
+ -------
10
+
11
+ ::
12
+
13
+ app.include(annotator.identity.simple);
14
+ app
15
+ .start()
16
+ .then(function () {
17
+ app.ident.identity = 'joebloggs';
18
+ });
19
+
20
+ See :func: `annotator.identity.simple ` for full API documentation.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments