Displaying 1 result from an estimated 1 matches for "writable_by".
2006 Feb 20
0
Securing the Model
Hello,
I have a security schema for all kinds of items in my application
(pages, logs, links, ...). Basically it works as follows :
readable_by can be either ''a'' (all) ''g'' (group) or ''u'' (owner). If it
is group then rgroup_id is set.
writable_by can be either ''a'', ''g'' or ''u''. If it is ''g'' for ''group'',
wgroup_id is set.
a user can read
* all posts he created (independantly of the readable_by flag)
* he has access to from the groups he is (rgroup_i...