mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 03:50:26 +00:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const ALLOWED_WEBHOOK_EVENTS = {
|
||
|
ENTRY_PUBLISH: 'entry.publish',
|
||
|
ENTRY_UNPUBLISH: 'entry.unpublish',
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
ALLOWED_WEBHOOK_EVENTS,
|
||
|
};
|