You are here

function activity_activity_access_grants in Activity 6.2

Implementation of hook_activity_access_grants().

File

modules/activity.activity.inc, line 28
: Provides Activity2 hooks for itself.

Code

function activity_activity_access_grants($account) {
  return array(
    'activity_actor' => array(
      $account->uid,
    ),
  );
}