mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 23:17:57 +01:00
add priv-custom :3
This commit is contained in:
parent
e0b3d7dd17
commit
b4d5b80f5f
1 changed files with 4 additions and 0 deletions
|
@ -24,7 +24,11 @@ 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) {
|
||||||
|
if ( req.hostname == "poketube.fun" || req.hostname == "poketube.site" || req.hostname == "poketube.online" || req.hostname == "poketube.xyz" ) {
|
||||||
renderTemplate(res, req, "priv.ejs");
|
renderTemplate(res, req, "priv.ejs");
|
||||||
|
} else {
|
||||||
|
renderTemplate(res, req, "priv-custom.ejs");
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/143", function (req, res) {
|
app.get("/143", function (req, res) {
|
||||||
|
|
Loading…
Reference in a new issue