Compare commits

...

4 Commits

Author SHA1 Message Date
Jorge Penadés 2e1e3f5abd Merge pull request '#6085 add acl authenticated' (!2188) from 6085-hotFix-addOwnedAlias into master
gitea/salix/pipeline/head This commit looks good Details
Reviewed-on: #2188
Reviewed-by: Juan Ferrer <juan@verdnatura.es>
2024-03-25 08:49:44 +00:00
Jorge Penadés 308a449b94 Merge branch 'master' into 6085-hotFix-addOwnedAlias
gitea/salix/pipeline/pr-master This commit looks good Details
2024-03-25 07:48:08 +00:00
Jorge Penadés 17ed853e09 Merge branch 'master' into 6085-hotFix-addOwnedAlias
gitea/salix/pipeline/pr-master This commit looks good Details
2024-03-21 12:51:06 +00:00
Jorge Penadés d8aad86c92 feat: refs #6085 add acl authenticated
gitea/salix/pipeline/pr-master This commit looks good Details
2024-03-21 13:42:02 +01:00
1 changed files with 16 additions and 1 deletions

View File

@ -23,5 +23,20 @@
"model": "VnUser", "model": "VnUser",
"foreignKey": "account" "foreignKey": "account"
} }
} },
"acls": [
{
"property": "create",
"accessType": "WRITE",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
}, {
"property": "deleteById",
"accessType": "WRITE",
"principalType": "ROLE",
"principalId": "$authenticated",
"permission": "ALLOW"
}
]
} }