forked from potsda.mn/mobilizon
Put back removed confirmation crypto call
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
9bf650f35f
commit
ebaa9154ee
|
@ -37,6 +37,7 @@
|
|||
|
||||
<script lang="ts">
|
||||
import { Component, Prop, Vue } from "vue-property-decorator";
|
||||
import { confirmLocalAnonymousParticipation } from "@/services/AnonymousParticipationStorage";
|
||||
import RouteName from "../../router/name";
|
||||
import { EventJoinOptions, IParticipant } from "../../types/event.model";
|
||||
import { CONFIRM_PARTICIPATION } from "../../graphql/event";
|
||||
|
@ -73,6 +74,7 @@ export default class ConfirmParticipation extends Vue {
|
|||
if (data) {
|
||||
const { confirmParticipation: participation } = data;
|
||||
this.participation = participation;
|
||||
await confirmLocalAnonymousParticipation(this.participation.event.uuid);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
|
|
Loading…
Reference in a new issue