You are here

function blogapi_perm in Drupal 5

Same name and namespace in other branches
  1. 6 modules/blogapi/blogapi.module \blogapi_perm()

Implementation of hook_perm().

File

modules/blogapi/blogapi.module, line 25
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_perm() {
  return array(
    'administer content with blog api',
  );
}