Skip to content

Commit

Permalink
Merge pull request #29 from scandipwa/feature/date-time-format
Browse files Browse the repository at this point in the history
#3658 - datetime format fields support
  • Loading branch information
carinadues authored Nov 8, 2021
2 parents ea99b9b + eec5f0b commit f7d287d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/etc/graphql/di.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
<item name="category_url_suffix" xsi:type="string">catalog/seo/category_url_suffix</item>
<item name="delivery_instore_active" xsi:type="string">carriers/instore/active</item>
<item name="access_token_lifetime" xsi:type="string">oauth/access_token_lifetime/customer</item>
<item name="use_calendar" xsi:type="string">catalog/custom_options/use_calendar</item>
<item name="year_range" xsi:type="string">catalog/custom_options/year_range</item>
<item name="date_fields_order" xsi:type="string">catalog/custom_options/date_fields_order</item>
<item name="time_format" xsi:type="string">catalog/custom_options/time_format</item>
</argument>
</arguments>
</type>
Expand Down
4 changes: 4 additions & 0 deletions src/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ type StoreConfig {
category_url_suffix: String @doc(description: "Category URL Suffix")
delivery_instore_active: Boolean @doc(description: "Defines if instore delivery method actived")
access_token_lifetime: String @doc(description: "Defines OAuth customer token lifetime")
use_calendar: String @doc(description: "Use a popup calendar as input control for date fields")
year_range: String @doc(description: "Min and max years allowed")
date_fields_order: String @doc(description: "Day, month and year order in date fields")
time_format: String @doc(description: "24h or 12h + AM/PM format")
}

type PriceTaxDisplay {
Expand Down

0 comments on commit f7d287d

Please sign in to comment.