Atm you add a permission related to a content type and a general default value. Then you associate that permission with a role and a content id (eg a specific forum) and set the value for that. Hoewever it may be wanted to
Have a general default value (eg canCloseTopics with value false)
Have a role specific default value (eg Moderators with true or Banned with Never)
Have the concrete permission (eg InternalForum and Moderators with false)
The easiest way would be to allow 0 as content_id and consider that as default value.
Atm you add a permission related to a content type and a general default value. Then you associate that permission with a role and a content id (eg a specific forum) and set the value for that. Hoewever it may be wanted to
canCloseTopics
with valuefalse
)Moderators
withtrue
orBanned
withNever
)InternalForum
andModerators
withfalse
)The easiest way would be to allow
0
ascontent_id
and consider that as default value.