You are here

function comment_service_perm in Services 6.2

Same name and namespace in other branches
  1. 7 services/comment_service/comment_service.module \comment_service_perm()

Implementation of hook_perm().

File

services/comment_service/comment_service.module, line 11
Link commenting functionality to services module.

Code

function comment_service_perm() {
  return array(
    'access comments from remote',
    'save comments from remote',
  );
}