Hook that allows custom logic before saving the composer

This commit is contained in:
Robin Ward 2019-10-11 14:41:05 -04:00
parent 4d67f2a8ed
commit ee4369f972

View File

@ -744,7 +744,13 @@ const Composer = RestModel.extend({
return false; return false;
}, },
// Overwrite to implement custom logic
beforeSave() {
return Ember.RSVP.Promise.resolve();
},
save(opts) { save(opts) {
return this.beforeSave().then(() => {
if (!this.cantSubmitPost) { if (!this.cantSubmitPost) {
// change category may result in some effect for topic featured link // change category may result in some effect for topic featured link
if (!this.canEditTopicFeaturedLink) { if (!this.canEditTopicFeaturedLink) {
@ -753,6 +759,7 @@ const Composer = RestModel.extend({
return this.editingPost ? this.editPost(opts) : this.createPost(opts); return this.editingPost ? this.editPost(opts) : this.createPost(opts);
} }
});
}, },
clearState() { clearState() {