Make sure number of available places gets updated when participation
status changes Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
33e51a05ec
commit
33acbca2bc
@ -389,6 +389,7 @@ export default class Event extends EventMixin {
|
|||||||
event.participantStats.unapproved = event.participantStats.unapproved + 1;
|
event.participantStats.unapproved = event.participantStats.unapproved + 1;
|
||||||
} else {
|
} else {
|
||||||
event.participantStats.approved = event.participantStats.approved + 1;
|
event.participantStats.approved = event.participantStats.approved + 1;
|
||||||
|
event.participantStats.participants = event.participantStats.participants + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
|
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
|
||||||
@ -459,6 +460,7 @@ export default class Event extends EventMixin {
|
|||||||
event.participantStats.unapproved = event.participantStats.unapproved - 1;
|
event.participantStats.unapproved = event.participantStats.unapproved - 1;
|
||||||
} else {
|
} else {
|
||||||
event.participantStats.approved = event.participantStats.approved - 1;
|
event.participantStats.approved = event.participantStats.approved - 1;
|
||||||
|
event.participantStats.participants = event.participantStats.participants - 1;
|
||||||
}
|
}
|
||||||
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
|
store.writeQuery({ query: FETCH_EVENT, variables: { uuid: this.uuid }, data: { event } });
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user