mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 22:01:49 +03:00
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
import PostSerializer from './post';
|
|
|
|
export default PostSerializer.extend({
|
|
serialize(/*snapshot, options*/) {
|
|
let json = this._super(...arguments);
|
|
|
|
// Properties that exist on the model but we don't want sent in the payload
|
|
delete json.email_subject;
|
|
delete json.send_email_when_published;
|
|
|
|
return json;
|
|
}
|
|
});
|