mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-14 11:05:50 +03:00
Allowed GET /configuration/about/
for Admin API v2 with API Key auth
refs https://github.com/TryGhost/Ghost/issues/9865 - needed for Zapier
This commit is contained in:
parent
24e96dcabf
commit
c9d6ffa5ab
@ -17,7 +17,8 @@ const notImplemented = function (req, res, next) {
|
||||
// @NOTE: experimental
|
||||
users: ['GET'],
|
||||
themes: ['POST'],
|
||||
subscribers: ['GET', 'PUT', 'DELETE', 'POST']
|
||||
subscribers: ['GET', 'PUT', 'DELETE', 'POST'],
|
||||
configuration: ['GET']
|
||||
};
|
||||
|
||||
const match = req.url.match(/^\/(\w+)\/?/);
|
||||
|
Loading…
Reference in New Issue
Block a user