1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge branch 'develop' of github.com:Budibase/budibase into develop

This commit is contained in:
Martin McKeaveney 2021-08-31 13:23:57 +01:00
commit 4b367f0480
2 changed files with 36 additions and 1 deletions

View file

@ -38,7 +38,7 @@
let data = new FormData()
data.append("file", file)
const res = await post(
"/api/admin/configs/upload/settings/logoUrl",
"/api/global/configs/upload/settings/logoUrl",
data,
{}
)

View file

@ -89,6 +89,26 @@ module RestModule {
},
},
},
patch: {
displayName: "PATCH",
readable: true,
type: QueryTypes.FIELDS,
urlDisplay: true,
fields: {
path: {
type: DatasourceFieldTypes.STRING,
},
queryString: {
type: DatasourceFieldTypes.STRING,
},
headers: {
type: DatasourceFieldTypes.OBJECT,
},
requestBody: {
type: DatasourceFieldTypes.JSON,
},
},
},
delete: {
displayName: "DELETE",
type: QueryTypes.FIELDS,
@ -175,6 +195,21 @@ module RestModule {
return await this.parseResponse(response)
}
async patch({ path = "", queryString = "", headers = {}, json = {} }) {
this.headers = {
...this.config.defaultHeaders,
...headers,
}
const response = await fetch(this.config.url + path + queryString, {
method: "PATCH",
headers: this.headers,
body: JSON.stringify(json),
})
return await this.parseResponse(response)
}
async delete({ path = "", queryString = "", headers = {} }) {
this.headers = {
...this.config.defaultHeaders,