initial upload
This commit is contained in:
parent
b2a512f7fe
commit
48ae5e89aa
30 changed files with 1293 additions and 0 deletions
12
routes/authorities.mjs
Normal file
12
routes/authorities.mjs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
export const get = async (request, response) => {
|
||||
if (request.method !== "GET") return response.status(405)
|
||||
|
||||
response.render(`ui/master.njk`, {
|
||||
page: 'authorities',
|
||||
userInfo: {
|
||||
firstName: 'Kai Uwe',
|
||||
lastName: 'Waggeling'
|
||||
}
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue