Update:Bookmarks modal UI #876

This commit is contained in:
advplyr 2023-09-17 09:28:43 -05:00
parent 04bc74babe
commit ce7779607f
3 changed files with 23 additions and 18 deletions

View file

@ -37,6 +37,9 @@ export default function ({ store }, inject) {
},
patch(url, data, options = {}) {
return this.request('PATCH', url, data, options)
},
delete(url, options = {}) {
return this.request('DELETE', url, undefined, options)
}
}
inject('nativeHttp', nativeHttp)