|
@@ -27,6 +27,7 @@ type User struct {
|
|
|
EntryDirection string `json:"entry_sorting_direction"`
|
|
EntryDirection string `json:"entry_sorting_direction"`
|
|
|
EntryOrder string `json:"entry_sorting_order"`
|
|
EntryOrder string `json:"entry_sorting_order"`
|
|
|
Stylesheet string `json:"stylesheet"`
|
|
Stylesheet string `json:"stylesheet"`
|
|
|
|
|
+ CustomJS string `json:"custom_js"`
|
|
|
GoogleID string `json:"google_id"`
|
|
GoogleID string `json:"google_id"`
|
|
|
OpenIDConnectID string `json:"openid_connect_id"`
|
|
OpenIDConnectID string `json:"openid_connect_id"`
|
|
|
EntriesPerPage int `json:"entries_per_page"`
|
|
EntriesPerPage int `json:"entries_per_page"`
|
|
@@ -70,6 +71,7 @@ type UserModificationRequest struct {
|
|
|
EntryDirection *string `json:"entry_sorting_direction"`
|
|
EntryDirection *string `json:"entry_sorting_direction"`
|
|
|
EntryOrder *string `json:"entry_sorting_order"`
|
|
EntryOrder *string `json:"entry_sorting_order"`
|
|
|
Stylesheet *string `json:"stylesheet"`
|
|
Stylesheet *string `json:"stylesheet"`
|
|
|
|
|
+ CustomJS *string `json:"custom_js"`
|
|
|
GoogleID *string `json:"google_id"`
|
|
GoogleID *string `json:"google_id"`
|
|
|
OpenIDConnectID *string `json:"openid_connect_id"`
|
|
OpenIDConnectID *string `json:"openid_connect_id"`
|
|
|
EntriesPerPage *int `json:"entries_per_page"`
|
|
EntriesPerPage *int `json:"entries_per_page"`
|