mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:28:59 +08:00
FIX: Restrict editing queued posts to one at a time
This commit is contained in:
parent
c7d367996a
commit
e83bf7dc07
|
@ -13,27 +13,28 @@ function updateState(state) {
|
|||
export default Ember.Controller.extend(BufferedContent, {
|
||||
needs: ['queued-posts'],
|
||||
post: Ember.computed.alias('model'),
|
||||
currentlyEditing: Ember.computed.alias('controllers.queued-posts.editing'),
|
||||
|
||||
editing: false,
|
||||
editing: Discourse.computed.propertyEqual('model', 'currentlyEditing'),
|
||||
|
||||
actions: {
|
||||
approve: updateState('approved'),
|
||||
reject: updateState('rejected'),
|
||||
|
||||
edit() {
|
||||
this.set('editing', true);
|
||||
this.set('currentlyEditing', this.get('model'));
|
||||
},
|
||||
|
||||
confirmEdit() {
|
||||
this.get('post').update({ raw: this.get('buffered.raw') }).then(() => {
|
||||
this.commitBuffer();
|
||||
this.set('editing', false);
|
||||
this.set('currentlyEditing', null);
|
||||
});
|
||||
},
|
||||
|
||||
cancelEdit() {
|
||||
this.rollbackBuffer();
|
||||
this.set('editing', false);
|
||||
this.set('currentlyEditing', null);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user