mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 11:30:21 +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,
|
|
};
|