Skip to content

Commit

Permalink
These changes have been automatically been done by JSdoc command whic…
Browse files Browse the repository at this point in the history
…h are necessary for the documatation pages
  • Loading branch information
notRyuk committed Aug 15, 2022
1 parent a3aeb5e commit 57a165a
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/BlogObject.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>BlogObject - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/BlogRoutes.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>BlogRoutes - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/CollectionObject.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>CollectionObject - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/NGOObject.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>NGOObject - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/NGORoutes.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>NGORoutes - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/UserObject.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>UserObject - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/UserRoutes.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>UserRoutes - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/db.js.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>db.js - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/global.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>Global - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/helpers.js.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>helpers.js - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>Home - TechnophilesAPI</title>
Expand Down
1 change: 1 addition & 0 deletions docs/mongoose.js.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>mongoose.js - TechnophilesAPI</title>
Expand Down
14 changes: 9 additions & 5 deletions docs/server.js.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>server.js - TechnophilesAPI</title>
Expand Down Expand Up @@ -58,7 +59,7 @@ <h1 class="page-title">server.js</h1>
<article>
<pre class="prettyprint source linenums"><code>import express from "express";
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import { join, dirname } from "path";
import compression from "compression";

import { PORT } from "./config.js";
Expand Down Expand Up @@ -1212,14 +1213,17 @@ <h1 class="page-title">server.js</h1>
})


app.use(express.static("./logo"))
app.use(express.static(join(__dirname, "logo")))
app.get(/\/logo(.png)?$/, async (_, res) => {
res.sendFile("./logo/logo.png")
res.sendFile(join(__dirname, "logo", "logo.png"))
})
app.get(/\/circular(.png)?$/, async (_, res) => {
res.sendFile(join(__dirname, "logo", "circular.png"))
})

app.use(express.static("docs"))
app.use(express.static(join(__dirname, "docs")))
app.get("/", (_, res) => {
res.sendFile("./docs/index.html")
res.sendFile(join(__dirname, "docs", "index.html"))
})

app.get("*", (_, res) => {
Expand Down
1 change: 1 addition & 0 deletions docs/tokenizer.js.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="./circular.png">

<meta charset="utf-8">
<title>tokenizer.js - TechnophilesAPI</title>
Expand Down

0 comments on commit 57a165a

Please sign in to comment.