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

Merge pull request #3957 from halfdan/3956-we-dont-like-html

Don't send HTML on post save.
This commit is contained in:
Hannah Wolfe 2014-09-05 11:36:19 +01:00
commit 12595fc50e

View file

@ -54,6 +54,8 @@ var PostSerializer = ApplicationSerializer.extend(DS.EmbeddedRecordsMixin, {
// Don't ever pass uuid's
delete data.uuid;
// Don't send HTML
delete data.html;
hash[root] = [data];
}