mirror of
https://github.com/strapi/strapi.git
synced 2025-11-06 13:01:40 +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,
|
||
|
|
};
|