Compare commits
No commits in common. "main" and "v0.0.1" have entirely different histories.
2 changed files with 8 additions and 13 deletions
|
|
@ -2,7 +2,7 @@
|
|||
"name": "Access",
|
||||
"short_description": "NFC door access — authorize Bolt Card taps and unlock via Home Assistant",
|
||||
"tile": "/access/static/image/access.png",
|
||||
"version": "0.0.2",
|
||||
"version": "0.0.1",
|
||||
"min_lnbits_version": "1.3.0",
|
||||
"contributors": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -137,26 +137,21 @@
|
|||
<q-dialog v-model="doorDialog.show">
|
||||
<q-card class="q-pa-lg" style="min-width: 420px">
|
||||
<h6 class="q-mt-none">New door</h6>
|
||||
<q-input
|
||||
v-model="doorDialog.data.name"
|
||||
label="Name"
|
||||
filled
|
||||
dense
|
||||
></q-input>
|
||||
<q-input v-model="doorDialog.data.name" label="Name" filled dense />
|
||||
<q-input
|
||||
v-model="doorDialog.data.ha_webhook_url"
|
||||
label="Home Assistant webhook URL (local)"
|
||||
filled
|
||||
dense
|
||||
class="q-mt-sm"
|
||||
></q-input>
|
||||
/>
|
||||
<q-input
|
||||
v-model="doorDialog.data.boltcards_base_url"
|
||||
label="boltcards API base (blank = this instance)"
|
||||
filled
|
||||
dense
|
||||
class="q-mt-sm"
|
||||
></q-input>
|
||||
/>
|
||||
<q-input
|
||||
v-model.number="doorDialog.data.unlock_timeout_ms"
|
||||
type="number"
|
||||
|
|
@ -164,7 +159,7 @@
|
|||
filled
|
||||
dense
|
||||
class="q-mt-sm"
|
||||
></q-input>
|
||||
/>
|
||||
<div class="row q-mt-md q-gutter-sm justify-end">
|
||||
<q-btn flat v-close-popup>Cancel</q-btn>
|
||||
<q-btn unelevated color="primary" @click="createDoor">Create</q-btn>
|
||||
|
|
@ -183,21 +178,21 @@
|
|||
dense
|
||||
emit-value
|
||||
map-options
|
||||
></q-select>
|
||||
/>
|
||||
<q-input
|
||||
v-model="grantDialog.data.external_id"
|
||||
label="Card external_id (from boltcards)"
|
||||
filled
|
||||
dense
|
||||
class="q-mt-sm"
|
||||
></q-input>
|
||||
/>
|
||||
<q-input
|
||||
v-model="grantDialog.data.label"
|
||||
label="Label (optional)"
|
||||
filled
|
||||
dense
|
||||
class="q-mt-sm"
|
||||
></q-input>
|
||||
/>
|
||||
<div class="row q-mt-md q-gutter-sm justify-end">
|
||||
<q-btn flat v-close-popup>Cancel</q-btn>
|
||||
<q-btn unelevated color="primary" @click="createGrant">Create</q-btn>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue