0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Updated Tag model to support actions

closes #11014
This commit is contained in:
Fabien O'Carroll 2019-08-14 11:01:25 +08:00
parent 5d7ad0518a
commit 657d0fc067

View file

@ -68,6 +68,24 @@ Tag = ghostBookshelf.Model.extend({
delete attrs.parent_id;
return attrs;
},
getAction(event, options) {
const actor = this.getActor(options);
// @NOTE: we ignore internal updates (`options.context.internal`) for now
if (!actor) {
return;
}
// @TODO: implement context
return {
event: event,
resource_id: this.id || this.previous('id'),
resource_type: 'tag',
actor_id: actor.id,
actor_type: actor.type
};
}
}, {
orderDefaultOptions: function orderDefaultOptions() {