fix: use singular for for customer entity
This commit is contained in:
parent
f7dd15e775
commit
fab419d974
3 changed files with 6 additions and 5 deletions
|
|
@ -58,7 +58,7 @@ async function directMessages(path) {
|
|||
try {
|
||||
const {data} = await LNbits.api.request(
|
||||
'GET',
|
||||
'/nostrmarket/api/v1/customers',
|
||||
'/nostrmarket/api/v1/customer',
|
||||
this.inkey
|
||||
)
|
||||
this.customers = data
|
||||
|
|
@ -89,7 +89,7 @@ async function directMessages(path) {
|
|||
try {
|
||||
const {data} = await LNbits.api.request(
|
||||
'POST',
|
||||
'/nostrmarket/api/v1/customers',
|
||||
'/nostrmarket/api/v1/customer',
|
||||
this.adminkey,
|
||||
{
|
||||
public_key: this.newPublicKey,
|
||||
|
|
@ -97,6 +97,7 @@ async function directMessages(path) {
|
|||
unread_messages: 0
|
||||
}
|
||||
)
|
||||
this.newPublicKey = null
|
||||
this.activePublicKey = data.public_key
|
||||
await this.selectActiveCustomer()
|
||||
} catch (error) {
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ async function orderList(path) {
|
|||
try {
|
||||
const {data} = await LNbits.api.request(
|
||||
'GET',
|
||||
'/nostrmarket/api/v1/customers',
|
||||
'/nostrmarket/api/v1/customer',
|
||||
this.inkey
|
||||
)
|
||||
this.customers = data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue