First time here? Check out the FAQ!

Revision history  [back]

Permissions are checked by assertions defined in askbot/models/__init__.py - see methods named user_assert_can_X, where X is some action.

There is no support for the specific feature you are asking about in Askbot, you will have to either for askbot or we can figure out a way to create either signals or other hooks that make this possible by configuration.

IMO, if you limit your user's ability to accept answers this way you might risk not getting any accepted answers, because this rule might be difficult for the users to understand (we could work on implementing definition for the specific permissions).

Permissions are checked by assertions defined in askbot/models/__init__.py - see methods named user_assert_can_X, where X is some action.

There is no support for the specific feature you are asking about this in Askbot, you will have to either for askbot or we can figure out a way to create either signals or other hooks that make this possible by configuration.

IMO, if you limit your user's ability to accept answers this way you might risk not getting any accepted answers, because this rule might be difficult for the users to understand (we could work on implementing definition for the specific permissions).understand.