mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 14:22:07 +03:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
const {events} = require('../../lib/common');
|
|
|
|
module.exports = {
|
|
docName: 'slack',
|
|
sendTest: {
|
|
permissions: false,
|
|
query() {
|
|
events.emit('slack.test');
|
|
}
|
|
}
|
|
};
|