mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05: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
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue