0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Removed unnecessary identities 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:03:00 +00:00
parent 9221e2a34e
commit 1682f7f42e
No known key found for this signature in database
GPG key ID: AB586C3B5AE5C037
2 changed files with 0 additions and 11 deletions

View file

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

View file

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