Members in Read mode
Is it possible to add a member in read mode only ?
I mean not able to write modifications in the database (and not access settings) ?
3 Replies
This is currently not possible as we don't have a real permission system in place, unfortunately you will need to modify the code in multiple places if you want that behavior
You will need to modify the WorkspaceMemberObjectMetadata and add a bool in your table. Then modify the WorkspaceQueryRunnerService to check that new bool but you will probably run in multiple edge cases since we haven't designed this system yet
And we probably won't go in that direction in the future for permissions so you will have issues when you will want to upgrade
Ok thanks @Weiko
So it's better to build another "read only" interface using the API then
You could do that yes but it won't stop people from using API to bypass your interface if security is an issue for you