Display config values in header and footer.
This commit is contained in:
parent
59f7897d8e
commit
fde340ead0
13 changed files with 344 additions and 80 deletions
10
server/resources/configResource.ts
Normal file
10
server/resources/configResource.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import {success} from "../utils/resources";
|
||||
import {config} from "../config";
|
||||
import {Request, Response} from "express";
|
||||
|
||||
export function get (req: Request, res: Response): void {
|
||||
success(
|
||||
res,
|
||||
config.client
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue