diff --git a/app/ayanova/src/router.js b/app/ayanova/src/router.js
index dc8817dc..6cc87ac2 100644
--- a/app/ayanova/src/router.js
+++ b/app/ayanova/src/router.js
@@ -41,38 +41,11 @@ export default new Router({
// which is lazy-loaded when the route is visited.
component: () =>
import(/* webpackChunkName: "about" */ "./views/About.vue")
+ },
+ {
+ path: "/log",
+ name: "log",
+ component: () => import(/* webpackChunkName: "log" */ "./views/log.vue")
}
]
});
-
-// Router.beforeEach((to, from, next) => {
-// if(to.matched.some(record => record.meta.requiresAuth)) {
-// if (localStorage.getItem('jwt') == null) {
-// next({
-// path: '/login',
-// params: { nextUrl: to.fullPath }
-// })
-// } else {
-// let user = JSON.parse(localStorage.getItem('user'))
-// if(to.matched.some(record => record.meta.is_admin)) {
-// if(user.is_admin == 1){
-// next()
-// }
-// else{
-// next({ name: 'userboard'})
-// }
-// }else {
-// next()
-// }
-// }
-// } else if(to.matched.some(record => record.meta.guest)) {
-// if(localStorage.getItem('jwt') == null){
-// next()
-// }
-// else{
-// next({ name: 'userboard'})
-// }
-// }else {
-// next()
-// }
-// })
diff --git a/app/ayanova/src/views/log.vue b/app/ayanova/src/views/log.vue
new file mode 100644
index 00000000..b1d400f4
--- /dev/null
+++ b/app/ayanova/src/views/log.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
diff --git a/devdocs/todo.txt b/devdocs/todo.txt
index da75616a..c7a73520 100644
--- a/devdocs/todo.txt
+++ b/devdocs/todo.txt
@@ -33,7 +33,7 @@ WEEK OF 2018-11-12 - RAVEN shell start work. YAY!
NEXT UP / CURRENTLY WORKING ON:
- About page with server license info, server version / client version
- - localize the view
+
- Also should show or have link to go to the local error log "Support information" view
- Search for terms I already localized via google on microsoft localization search page to confirm they are correct or change them
- Add an error log view that a user can go to without logging in that shows the local error log