mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
7b761a8751
no issue Adds new canary api endpoint, currently replicating v2 endpoint but paving way for future updates to new version
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
const common = require('../../lib/common');
|
|
|
|
module.exports = {
|
|
docName: 'slack',
|
|
sendTest: {
|
|
permissions: false,
|
|
query() {
|
|
common.events.emit('slack.test');
|
|
}
|
|
}
|
|
};
|