0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

Removed unnecessary member-signin-urls serializer

refs: https://github.com/TryGhost/Toolbox/issues/245

-  we don't need this serializer because the default serializer will do the same thing
This commit is contained in:
Hannah Wolfe 2022-03-26 09:11:30 +00:00
parent 1682f7f42e
commit df4b630da0
No known key found for this signature in database
GPG key ID: AB586C3B5AE5C037
2 changed files with 0 additions and 11 deletions

View file

@ -73,10 +73,6 @@ module.exports = {
return require('./tiers');
},
get member_signin_urls() {
return require('./member-signin-urls');
},
get images() {
return require('./images');
},

View file

@ -1,7 +0,0 @@
module.exports = {
read(data, apiConfig, frame) {
frame.response = {
member_signin_urls: [data]
};
}
};