You are here

function simpleanswer_perm in Answers 5.2

Implementation of hook_perm().

File

simpleanswer/simpleanswer.module, line 45
Adds a simple form to post a response/answer to questions using the answers module. This module does not display its content directly and requires the answers module to show its content.

Code

function simpleanswer_perm() {
  return array(
    'create responses',
    'edit own responses',
  );
}