feat: refresh merchant from nostr (#85)

This commit is contained in:
Vlad Stan 2023-09-20 12:06:36 +03:00 committed by GitHub
parent 656723ed5e
commit 2dc5c5479f
6 changed files with 55 additions and 5 deletions

View file

@ -33,6 +33,23 @@ async function merchantDetails(path) {
LNbits.utils.notifyApiError(error)
}
},
requeryMerchantData: async function () {
try {
await LNbits.api.request(
'GET',
`/nostrmarket/api/v1/merchant/${this.merchantId}/nostr`,
this.adminkey
)
this.$q.notify({
type: 'positive',
message: 'Merchant data refreshed from Nostr',
timeout: 5000
})
} catch (error) {
console.warn(error)
LNbits.utils.notifyApiError(error)
}
},
deleteMerchantTables: function () {
LNbits.utils
.confirmDialog(