Refactor replace some HTTP related magic values by enums.
This commit is contained in:
parent
c988227bc7
commit
15d3f45bae
9 changed files with 135 additions and 24 deletions
server/resources
|
@ -27,6 +27,7 @@ import {
|
|||
toNodeTokenResponse,
|
||||
} from "../types";
|
||||
import { filterUndefinedFromJSON } from "../shared/utils/json";
|
||||
import { HttpHeader } from "../shared/utils/http";
|
||||
|
||||
const nodeFields = [
|
||||
"hostname",
|
||||
|
@ -165,7 +166,7 @@ export function getAll(req: Request, res: Response): void {
|
|||
total: number;
|
||||
pageNodes: DomainSpecificNodeResponse[];
|
||||
}) => {
|
||||
res.set("X-Total-Count", result.total.toString(10));
|
||||
res.set(HttpHeader.X_TOTAL_COUNT, result.total.toString(10));
|
||||
return Resources.success(
|
||||
res,
|
||||
result.pageNodes.map(filterUndefinedFromJSON)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue