Query to reset default permission on a content type on Rhythmyx 7.3.0? #598
-
I looked at the PSX_ACLS, ACLENTRIES, ACLENTRYPERMISSIONS tables to try to reset the permissions on a content type. The content type doesn't seem to appear in the workbench anymore, so I'm not able to edit permissions through the UI (can't use superUserRole either). How can I enable read access on that type again using only database queries? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This query will return the list of ACL, ENTRY, and Permission by content type:
Content Types are object type 2. To completely clear the existing ACL's on a content type you could do something like this (replace ? with the content type id of the content type you want to clear the permissions for):
|
Beta Was this translation helpful? Give feedback.
This query will return the list of ACL, ENTRY, and Permission by content type:
Content Types are object type 2.
To completely clear the existing ACL's on a content type you could do something like this (replace ? with the content type id of the content type you want to clear the permissions for):