File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed
java/org/fossasia/openevent/general/attendees Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ interface AttendeeApi {
21
21
@GET(" events/{id}/custom-forms" )
22
22
fun getCustomFormsForAttendees (
23
23
@Path(" id" ) id : Long ,
24
- @Query(" filter" ) filter : String
24
+ @Query(" filter" ) filter : String ,
25
+ @Query(" page[size]" ) pageSize : Int = 22
25
26
): Single <List <CustomForm >>
26
27
}
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ object FormIdentifier {
8
8
val CITY = " city"
9
9
val STATE = " state"
10
10
val COUNTRY = " country"
11
- val JOB_TITLE = " job_title "
11
+ val JOB_TITLE = " jobTitle "
12
12
val PHONE = " phone"
13
- val TAX_INFO = " tax_business_info "
14
- val BILLING_ADDRESS = " billing_address "
15
- val HOME_ADDRESS = " home_address "
16
- val SHIPPING_ADDRESS = " shipping_address "
13
+ val TAX_INFO = " taxBusinessInfo "
14
+ val BILLING_ADDRESS = " billingAddress "
15
+ val HOME_ADDRESS = " homeAddress "
16
+ val SHIPPING_ADDRESS = " shippingAddress "
17
17
val COMPANY = " company"
18
- val WORK_ADDRESS = " work_address "
19
- val WORK_PHONE = " work_phone "
18
+ val WORK_ADDRESS = " workAddress "
19
+ val WORK_PHONE = " workPhone "
20
20
val WEBSITE = " website"
21
21
val BLOG = " blog"
22
22
val TWITTER = " twitter"
Original file line number Diff line number Diff line change 274
274
android : layout_height =" wrap_content"
275
275
android : layout_marginBottom =" @dimen/padding_medium"
276
276
android : layout_marginTop =" @dimen/padding_medium"
277
- android : hint =" @string/work_address "
277
+ android : hint =" @string/address "
278
278
android : visibility =" gone"
279
279
tools : visibility =" visible" >
280
280
281
281
<com .google.android.material.textfield.TextInputEditText
282
282
android : id =" @+id/address"
283
283
android : layout_width =" match_parent"
284
284
android : layout_height =" wrap_content"
285
- android : text =" @{attendee.workAddress }" />
285
+ android : text =" @{attendee.address }" />
286
286
</com .google.android.material.textfield.TextInputLayout>
287
287
<com .google.android.material.textfield.TextInputLayout
288
288
style =" @style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
You can’t perform that action at this time.
0 commit comments