0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Moved formatOnWrite function to Bookshelf override plugin

no issue

- `formatOnWrite` doesn't override anything in Bookshelf but we use it
  within the `override` plugin and sub-models may override it, so it's
  easier to keep these things together
This commit is contained in:
Daniel Lockyer 2021-06-17 16:46:27 +01:00
parent a635f3b68d
commit c0baf5fdee
No known key found for this signature in database
GPG key ID: D21186F0B47295AD
2 changed files with 7 additions and 5 deletions

View file

@ -47,11 +47,6 @@ ghostBookshelf.Model = ghostBookshelf.Model.extend({
proto.initialize.call(this);
},
// overridable function for models to format attrs only when saving to db
formatOnWrite: function formatOnWrite(attrs) {
return attrs;
},
hasDateChanged: function (attr) {
return moment(this.get(attr)).diff(moment(this.previous(attr))) !== 0;
},

View file

@ -33,6 +33,13 @@ module.exports = function (Bookshelf) {
return parentSync;
},
// overridable function for models to format attrs only when saving to db
// this function doesn't override anything in Bookshelf but we use this in
// this plugin and sub-models may override it, so it's easier to keep it in here
formatOnWrite: function formatOnWrite(attrs) {
return attrs;
},
// format date before writing to DB, bools work
format: function format(attrs) {
return this.fixDatesWhenSave(attrs);