mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
v4.15.1
-----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQTqYa7kNs8D7Oo9dgLSEYbwtHKVrQUCYUxOIgAKCRDSEYbwtHKV reO6AQCL2mFdVLBwRbpVQa2Zs9RlYKk88ivLRMpAZPPiElNblQEAqt710wrVbMwm hOOWbWdFpPOWCrop9zhO8GJSPeNpJw0= =Ff3M -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQTqYa7kNs8D7Oo9dgLSEYbwtHKVrQUCYUxTawAKCRDSEYbwtHKV ra28AQCcambctLCH70Sc7SJmexojA5k6Ti0p3pwOktWY/WygZQEAlMEHSDw89wdY 3U8R8zY1d1MeXqj51Op95sTYwiDAjg8= =HoUL -----END PGP SIGNATURE----- Merged v4.15.1 into main v4.15.1
This commit is contained in:
commit
57664696a4
4 changed files with 5 additions and 4 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 2a06f299a8ee05c29629507bd89ea44814ca9a23
|
||||
Subproject commit f9f212d6102d176faf71fb1e203669a8f8bd6c23
|
|
@ -35,6 +35,7 @@ module.exports = function setupMembersApp() {
|
|||
// We don't want to add global bodyParser middleware as that interfers with stripe webhook requests on - `/webhooks`.
|
||||
membersApp.get('/api/member', middleware.getMemberData);
|
||||
membersApp.put('/api/member', bodyParser.json({limit: '1mb'}), middleware.updateMemberData);
|
||||
membersApp.post('/api/member/email', bodyParser.json({limit: '1mb'}), (req, res) => membersService.api.middleware.updateEmailAddress(req, res));
|
||||
membersApp.get('/api/session', middleware.getIdentityToken);
|
||||
membersApp.delete('/api/session', middleware.deleteSession);
|
||||
membersApp.get('/api/site', middleware.getMemberSiteData);
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
"emailAnalytics": true
|
||||
},
|
||||
"portal": {
|
||||
"url": "https://unpkg.com/@tryghost/portal@~1.9.0/umd/portal.min.js",
|
||||
"version": "1.9"
|
||||
"url": "https://unpkg.com/@tryghost/portal@~1.10.0/umd/portal.min.js",
|
||||
"version": "1.10"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ghost",
|
||||
"version": "4.15.0",
|
||||
"version": "4.15.1",
|
||||
"description": "The professional publishing platform",
|
||||
"author": "Ghost Foundation",
|
||||
"homepage": "https://ghost.org",
|
||||
|
|
Loading…
Reference in a new issue