mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-15 03:01:37 -05:00
Fixed filename casing in canary API
refs: 0ef5a5c97a
- As per the previous commit, our mixed filename casing inadvertently resulted in a bug
- The casing in the codebase is meant to be kebab-case always, so fixing this everywhere that's relevant to the API whilst there's a good reason
This commit is contained in:
parent
0ef5a5c97a
commit
45de9b0efc
9 changed files with 3 additions and 3 deletions
core/server/api/canary
test
e2e-api/admin
regression/api/admin
|
@ -78,7 +78,7 @@ module.exports = {
|
|||
},
|
||||
|
||||
get membersStripeConnect() {
|
||||
return shared.pipeline(require('./membersStripeConnect'), localUtils);
|
||||
return shared.pipeline(require('./members-stripe-connect'), localUtils);
|
||||
},
|
||||
|
||||
get members() {
|
||||
|
@ -98,7 +98,7 @@ module.exports = {
|
|||
},
|
||||
|
||||
get memberSigninUrls() {
|
||||
return shared.pipeline(require('./memberSigninUrls.js'), localUtils);
|
||||
return shared.pipeline(require('./member-signin-urls.js'), localUtils);
|
||||
},
|
||||
|
||||
get labels() {
|
||||
|
|
|
@ -74,7 +74,7 @@ module.exports = {
|
|||
},
|
||||
|
||||
get member_signin_urls() {
|
||||
return require('./member-signin_urls');
|
||||
return require('./member-signin-urls');
|
||||
},
|
||||
|
||||
get identities() {
|
||||
|
|
Loading…
Add table
Reference in a new issue