Local modifications to ClusterLabs/Anvil by Alteeve
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
859 B

import express from 'express';
import { assertInit } from '../middlewares';
import { setMapNetwork } from '../lib/request_handlers/command';
import { configStriker } from '../lib/request_handlers/host';
import { getNetworkInterface } from '../lib/request_handlers/network-interface';
const router = express.Router();
router
.get(
'/network-interface/:hostUUID?',
assertInit({
fail: ({ path }, response) => response.redirect(307, `/api${path}`),
}),
getNetworkInterface,
)
.put(
'/',
assertInit({
fail: (request, response) =>
response.redirect(307, `/api/host?handler=striker`),
}),
configStriker,
)
.put(
'/set-map-network',
assertInit({
fail: ({ path }, response) =>
response.redirect(307, `/api/command${path}`),
}),
setMapNetwork,
);
export default router;