function nodejs_permission in Node.js integration 7
Implements hook_permission().
File
- ./
nodejs.module, line 26
Code
function nodejs_permission() {
return array(
'add users to nodejs channels' => array(
'title' => t('Add users to the Node.js server channels'),
'description' => t('Allows to add users manually to any channel in the Node.js server.'),
),
);
}