67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { makeDeleteRequest, makeGetRequest, makePutBodyRequest } from '../'
|
|
import { CustomConfig } from '../../../../shared/models/server/custom-config.model'
|
|
|
|
function getConfig (url: string) {
|
|
const path = '/api/v1/config'
|
|
|
|
return makeGetRequest({
|
|
url,
|
|
path,
|
|
statusCodeExpected: 200
|
|
})
|
|
}
|
|
|
|
function getAbout (url: string) {
|
|
const path = '/api/v1/config/about'
|
|
|
|
return makeGetRequest({
|
|
url,
|
|
path,
|
|
statusCodeExpected: 200
|
|
})
|
|
}
|
|
|
|
function getCustomConfig (url: string, token: string, statusCodeExpected = 200) {
|
|
const path = '/api/v1/config/custom'
|
|
|
|
return makeGetRequest({
|
|
url,
|
|
token,
|
|
path,
|
|
statusCodeExpected
|
|
})
|
|
}
|
|
|
|
function updateCustomConfig (url: string, token: string, newCustomConfig: CustomConfig, statusCodeExpected = 200) {
|
|
const path = '/api/v1/config/custom'
|
|
|
|
return makePutBodyRequest({
|
|
url,
|
|
token,
|
|
path,
|
|
fields: newCustomConfig,
|
|
statusCodeExpected
|
|
})
|
|
}
|
|
|
|
function deleteCustomConfig (url: string, token: string, statusCodeExpected = 200) {
|
|
const path = '/api/v1/config/custom'
|
|
|
|
return makeDeleteRequest({
|
|
url,
|
|
token,
|
|
path,
|
|
statusCodeExpected
|
|
})
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
export {
|
|
getConfig,
|
|
getCustomConfig,
|
|
updateCustomConfig,
|
|
getAbout,
|
|
deleteCustomConfig
|
|
}
|