Don't expose "timezone" for input when generating 'fabric' project

static default is good enough for that
This commit is contained in:
Lance Edgar 2020-09-20 18:01:23 -05:00
parent d146514c39
commit 2d29245037
2 changed files with 0 additions and 20 deletions

View file

@ -249,23 +249,6 @@
</div> </div>
</div> </div>
<br />
<div class="card">
<header class="card-header">
<p class="card-header-title">Misc.</p>
</header>
<div class="card-content">
<div class="content">
<b-field horizontal label="Time Zone"
message="for possible values see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List">
<b-input name="timezone" v-model="fabric.timezone"></b-input>
</b-field>
</div>
</div>
</div>
<br /> <br />
<div class="card"> <div class="card">
<header class="card-header"> <header class="card-header">
@ -335,7 +318,6 @@
organization: "Acme Foods", organization: "Acme Foods",
python_project_name: "Acme-Fabric", python_project_name: "Acme-Fabric",
python_package_name: "acmefab", python_package_name: "acmefab",
timezone: 'America/Chicago',
integrates_with: '', integrates_with: '',
} }

View file

@ -104,8 +104,6 @@ class GenerateFabricProject(colander.MappingSchema):
python_name = colander.SchemaNode(colander.String()) python_name = colander.SchemaNode(colander.String())
timezone = colander.SchemaNode(colander.String())
integrates_with = colander.SchemaNode(colander.String(), integrates_with = colander.SchemaNode(colander.String(),
missing=colander.null) missing=colander.null)