function raven_permission in Raven: Sentry Integration 7
Same name and namespace in other branches
- 7.4 raven.module \raven_permission()
- 7.2 raven.module \raven_permission()
- 7.3 raven.module \raven_permission()
Implements hook_permission().
File
- ./
raven.module, line 31 - Allows to track errors to Sentry server.
Code
function raven_permission() {
return array(
'send javascript errors to sentry' => array(
'title' => t('Send JavaScript errors to Sentry'),
'description' => t("For users with this permission, JavaScript errors will be captured and submitted to the Sentry server's public DSN."),
),
);
}