1
0
Fork 0
peertube/shared/extra-utils/server/redundancy.ts

18 lines
429 B
TypeScript
Raw Normal View History

2018-09-11 14:27:07 +00:00
import { makePutBodyRequest } from '../requests/requests'
async function updateRedundancy (url: string, accessToken: string, host: string, redundancyAllowed: boolean, expectedStatus = 204) {
const path = '/api/v1/server/redundancy/' + host
return makePutBodyRequest({
url,
path,
token: accessToken,
fields: { redundancyAllowed },
statusCodeExpected: expectedStatus
})
}
export {
updateRedundancy
}