0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Allowed browse actions for integrations

refs #9865
This commit is contained in:
kirrg001 2019-02-06 21:09:25 +01:00 committed by Katharina Irrgang
parent 5f4cf42c14
commit dbd3832967

View file

@ -18,7 +18,8 @@ const notImplemented = function (req, res, next) {
users: ['GET'],
themes: ['POST'],
subscribers: ['GET', 'PUT', 'DELETE', 'POST'],
configuration: ['GET']
configuration: ['GET'],
actions: ['GET']
};
const match = req.url.match(/^\/(\w+)\/?/);