You are here

function answers_perm in Answers 5.2

Implementation of hook_perm().

File

./answers.module, line 44
Enables the creation of question nodes that can be answered by posting answer nodes.

Code

function answers_perm() {
  return array(
    'create quests',
    'edit own quests',
  );
}