mirror of
https://codeberg.org/ashley/poke.git
synced 2024-12-26 06:28:40 +01:00
add apps.ejs lol
This commit is contained in:
parent
6bc983d4e0
commit
4d90b0e951
1 changed files with 4 additions and 0 deletions
|
@ -101,6 +101,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
renderTemplate(res, req, "domains.ejs");
|
||||
});
|
||||
|
||||
app.get("/apps", function (req, res) {
|
||||
renderTemplate(res, req, "apps.ejs");
|
||||
});
|
||||
|
||||
app.get("/license", function (req, res) {
|
||||
renderTemplate(res, req, "license.ejs");
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue