mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:38:25 +01:00
reformat file :p
This commit is contained in:
parent
3d44c7b6b4
commit
4aa8f3bc1b
1 changed files with 34 additions and 27 deletions
|
@ -1,4 +1,13 @@
|
|||
const { fetcher,core, wiki,musicInfo, modules, version, initlog, init,} = require("../libpoketube-initsys.js");
|
||||
const {
|
||||
fetcher,
|
||||
core,
|
||||
wiki,
|
||||
musicInfo,
|
||||
modules,
|
||||
version,
|
||||
initlog,
|
||||
init,
|
||||
} = require("../libpoketube-initsys.js");
|
||||
const {
|
||||
IsJsonString,
|
||||
convert,
|
||||
|
@ -12,14 +21,14 @@ const {
|
|||
const sha384 = modules.hash;
|
||||
|
||||
module.exports = function (app, config, renderTemplate) {
|
||||
var html_location = './css/';
|
||||
var html_location = "./css/";
|
||||
|
||||
app.get("/privacy", function (req, res) {
|
||||
app.get("/privacy", function (req, res) {
|
||||
renderTemplate(res, req, "priv.ejs");
|
||||
});
|
||||
});
|
||||
|
||||
app.get("/143", function (req, res) {
|
||||
var number_easteregg = getRandomArbitrary(0, 150);
|
||||
app.get("/143", function (req, res) {
|
||||
var number_easteregg = getRandomArbitrary(0, 143);
|
||||
|
||||
if (number_easteregg == "143") {
|
||||
renderTemplate(res, req, "143.ejs");
|
||||
|
@ -27,19 +36,17 @@ app.get("/143", function (req, res) {
|
|||
if (number_easteregg != "143") {
|
||||
return res.redirect("/");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
app.get("/domains", function (req, res) {
|
||||
app.get("/domains", function (req, res) {
|
||||
renderTemplate(res, req, "domains.ejs");
|
||||
});
|
||||
});
|
||||
|
||||
app.get("/license", function (req, res) {
|
||||
app.get("/license", function (req, res) {
|
||||
renderTemplate(res, req, "license.ejs");
|
||||
});
|
||||
});
|
||||
|
||||
app.get("/css/:id", (req, res) => {
|
||||
res.sendFile(req.params.id, { root : html_location});
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
app.get("/css/:id", (req, res) => {
|
||||
res.sendFile(req.params.id, { root: html_location });
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue