File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 168168 },
169169 "LIPPUPISTE" : {
170170 "label" : " Lippupiste"
171+ },
172+ "TIXLY" : {
173+ "label" : " Tixly"
171174 }
172175 }
173176 },
Original file line number Diff line number Diff line change 168168 },
169169 "LIPPUPISTE" : {
170170 "label" : " Lippupiste"
171+ },
172+ "TIXLY" : {
173+ "label" : " Tixly"
171174 }
172175 }
173176 },
Original file line number Diff line number Diff line change 168168 },
169169 "LIPPUPISTE" : {
170170 "label" : " Lippupiste"
171+ },
172+ "TIXLY" : {
173+ "label" : " Tixly"
171174 }
172175 }
173176 },
Load diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -28,4 +28,8 @@ export const ticketSystemChoices = [
2828 id : TicketSystem . Lippupiste ,
2929 name : 'events.fields.ticketSystem.choices.LIPPUPISTE.label' ,
3030 } ,
31+ {
32+ id : TicketSystem . Tixly ,
33+ name : 'events.fields.ticketSystem.choices.TIXLY.label' ,
34+ } ,
3135] ;
Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ export const addEventMutation = gql`
1919 url
2020 endTime
2121 }
22+ ... on TixlyEventTicketSystem {
23+ url
24+ endTime
25+ }
2226 }
2327 translations {
2428 languageCode
@@ -66,6 +70,10 @@ export const updateEventMutation = gql`
6670 url
6771 endTime
6872 }
73+ ... on TixlyEventTicketSystem {
74+ url
75+ endTime
76+ }
6977 }
7078 }
7179 }
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ export const eventsQuery = gql`
3636 url
3737 endTime
3838 }
39+ ... on TixlyEventTicketSystem {
40+ url
41+ endTime
42+ }
3943 }
4044 }
4145 }
@@ -92,6 +96,12 @@ export const eventQuery = gql`
9296 url
9397 endTime
9498 }
99+ ... on TixlyEventTicketSystem {
100+ usedPasswordCount
101+ freePasswordCount
102+ url
103+ endTime
104+ }
95105 }
96106 }
97107 }
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ export const addOccurrenceMutation = gql`
2929 ... on LippupisteOccurrenceTicketSystem {
3030 url
3131 }
32+ ... on TixlyOccurrenceTicketSystem {
33+ url
34+ }
3235 }
3336 }
3437 }
@@ -87,6 +90,9 @@ export const updateOccurrenceMutation = gql`
8790 ... on LippupisteOccurrenceTicketSystem {
8891 url
8992 }
93+ ... on TixlyOccurrenceTicketSystem {
94+ url
95+ }
9096 }
9197 }
9298 }
You can’t perform that action at this time.
0 commit comments