Merge pull request #96 from roopakv/roopakv/fix_app_ctxt

Fix app context
This commit is contained in:
Alex Pliutau 2019-07-19 08:54:22 +02:00 committed by GitHub
commit da794934b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,11 +104,11 @@ type (
// ApplicationContext struct // ApplicationContext struct
ApplicationContext struct { ApplicationContext struct {
BrandName string `json:"brand_name"` BrandName string `json:"brand_name,omitempty"`
Locale string `json:"locale"` Locale string `json:"locale,omitempty"`
LandingPage string `json:"landing_page"` LandingPage string `json:"landing_page,omitempty"`
ShippingPreference string `json:"shipping_preference"` ShippingPreference string `json:"shipping_preference,omitempty"`
UserAction string `json:"user_action"` UserAction string `json:"user_action,omitempty"`
} }
// Authorization struct // Authorization struct