We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c44df8 commit 184db6dCopy full SHA for 184db6d
libpretixsync/src/main/java/eu/pretix/libpretixsync/check/TicketCheckProvider.kt
@@ -45,20 +45,9 @@ interface TicketCheckProvider {
45
46
var currentValue: String? = null
47
48
- var question: QuestionOutput
+ val question: QuestionOutput
49
get() = QuestionOutput(_question, _jsonData)
50
51
- set(value) {
52
- this._question = Question(
53
- server_id = value.server_id,
54
- json_data = value.json_data,
55
- position = -1, //TODO
56
- required = false, //TODO
57
- id = -1,
58
- event_slug = null,
59
- ).toModel()
60
- }
61
-
62
constructor(question: QuestionModel, jsonData: String, currentValue: String?) {
63
this._question = question
64
this._jsonData = jsonData
0 commit comments