From 4deaf551d4b4863b8750da5eede3ff76ea465488 Mon Sep 17 00:00:00 2001
From: Athanasios <ath.kouk.oid@gmail.com>
Date: Tue, 20 Apr 2021 13:37:21 +0200
Subject: [PATCH] Update settings.js

---
 public/settings.js | 49 +++++++++++++++++-----------------------------
 1 file changed, 18 insertions(+), 31 deletions(-)

diff --git a/public/settings.js b/public/settings.js
index bb24470..18539a9 100644
--- a/public/settings.js
+++ b/public/settings.js
@@ -1,3 +1,12 @@
+/*
+███████╗██╗███╗   ██╗ ██████╗ ███████╗██████╗     ██╗    ██╗███████╗ ██████╗ 
+██╔════╝██║████╗  ██║██╔════╝ ██╔════╝██╔══██╗    ██║    ██║██╔════╝██╔════╝ 
+█████╗  ██║██╔██╗ ██║██║  ███╗█████╗  ██████╔╝    ██║ █╗ ██║█████╗  ██║  ███╗
+██╔══╝  ██║██║╚██╗██║██║   ██║██╔══╝  ██╔══██╗    ██║███╗██║██╔══╝  ██║   ██║
+██║     ██║██║ ╚████║╚██████╔╝███████╗██║  ██║    ╚███╔███╔╝███████╗╚██████╔╝
+╚═╝     ╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝╚═╝  ╚═╝     ╚══╝╚══╝ ╚══════╝ ╚═════╝ 
+*/
+
 const BASE_URL = `${window.location.origin}/${window.location.pathname.split('/').filter((e, i)=>{return i>0 & i<4}).join('/')}`;
 const ON = true;
 const OFF = false;
@@ -24,21 +33,18 @@ const DEFAULT = {
   avatar: `${BASE_URL}/assets/images/avatar.png`
 };
 
+/*
+███████╗███████╗████████╗████████╗██╗███╗   ██╗ ██████╗ ███████╗
+██╔════╝██╔════╝╚══██╔══╝╚══██╔══╝██║████╗  ██║██╔════╝ ██╔════╝
+███████╗█████╗     ██║      ██║   ██║██╔██╗ ██║██║  ███╗███████╗
+╚════██║██╔══╝     ██║      ██║   ██║██║╚██╗██║██║   ██║╚════██║
+███████║███████╗   ██║      ██║   ██║██║ ╚████║╚██████╔╝███████║
+╚══════╝╚══════╝   ╚═╝      ╚═╝   ╚═╝╚═╝  ╚═══╝ ╚═════╝ ╚══════╝
+*/
+
 let settings = {
 
   switches: [
-    {
-      name: "projectLogo",
-      state: OFF
-    },
-    {
-      name: "projectName",
-      state: OFF
-    },
-    {
-      name: "menu",
-      state: OFF
-    },
     {
       name: "participants",
       state: ON
@@ -49,25 +55,6 @@ let settings = {
     }
   ],
 
-  projectLogo: `${BASE_URL}/assets/logos/M4_LAB_tr.png`,
-
-  projectName: "M4_LAB Page Demo",
-
-  menu: [
-    {
-      menuText: "home",
-      link: `${BASE_URL}/home/`
-    },
-    {
-      menuText: "results",
-      link: `${BASE_URL}/results/`
-    },
-    {
-      menuText: "demo",
-      link: "http://example.com"
-    }
-  ],
-
   participants: [
     {
       name: "John Doe",
-- 
GitLab