diff options
author | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 13:31:11 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2023-03-04 13:44:26 +0100 |
commit | 4fead04055be4967d9ea3b24ff61fe37a93108dd (patch) | |
tree | 40fb5ea2874466cae1b3fb6ad84d1d133992bf34 /bsfs/graph/ac/null.py | |
parent | 2c6c23f85e7f2123c508f9ff8a4aa776948bb589 (diff) | |
download | bsfs-4fead04055be4967d9ea3b24ff61fe37a93108dd.tar.gz bsfs-4fead04055be4967d9ea3b24ff61fe37a93108dd.tar.bz2 bsfs-4fead04055be4967d9ea3b24ff61fe37a93108dd.zip |
namespace refactoring and cleanup
Diffstat (limited to 'bsfs/graph/ac/null.py')
-rw-r--r-- | bsfs/graph/ac/null.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsfs/graph/ac/null.py b/bsfs/graph/ac/null.py index 3a391aa..c9ec7d0 100644 --- a/bsfs/graph/ac/null.py +++ b/bsfs/graph/ac/null.py @@ -24,7 +24,7 @@ class NullAC(base.AccessControlBase): def is_protected_predicate(self, pred: schema.Predicate) -> bool: """Return True if a predicate cannot be modified manually.""" - return pred.uri == ns.bsm.t_created + return pred.uri == ns.bsn.t_created def create(self, node_type: schema.Node, guids: typing.Iterable[URI]): """Perform post-creation operations on nodes, e.g. ownership information.""" |