From 20bd5ac4a59c6929892e5e412c4b912a6215e8ae Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Fri, 25 Jul 2025 11:39:24 -0400 Subject: [PATCH] Sets up permissions strategy for user access to website features or web app functionality --- perms_convention.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 perms_convention.toml diff --git a/perms_convention.toml b/perms_convention.toml new file mode 100644 index 0000000..3900fcc --- /dev/null +++ b/perms_convention.toml @@ -0,0 +1,20 @@ +# Scope of where an activity may take place +[activity.scopes] +blog = 0 +share = 1 +catalog = 2 +stream = 3 +talk = 4 +site = 5 + +# Activities that may occur in any scope-- +# Their values are added together to +# express one permission value per scope +[activity.permission_values] +read = 4 +publish = 2 +comment = 8 +review = 1 + +[pub_slugs] +algo = "randnum_concat" \ No newline at end of file