Ver código fonte

feat(webapp): link talk.desec.io

Peter Thomassen 5 anos atrás
pai
commit
5ce311bdd5
2 arquivos alterados com 10 adições e 0 exclusões
  1. 5 0
      webapp/src/App.vue
  2. 5 0
      webapp/src/router/index.js

+ 5 - 0
webapp/src/App.vue

@@ -124,6 +124,11 @@ export default {
         'icon': 'mdi-book-open-page-variant',
         'text': 'API Reference',
       },
+      'talk': {
+        'name': 'talk',
+        'icon': 'mdi-forum-outline',
+        'text': 'Talk',
+      },
       'donate': {
         'name': 'donate',
         'icon': 'mdi-gift-outline',

+ 5 - 0
webapp/src/router/index.js

@@ -33,6 +33,11 @@ const routes = [
     name: 'docs',
     beforeEnter(to) { location.href = to.path },
   },
+  {
+    path: '//talk.desec.io/',
+    name: 'talk',
+    beforeEnter(to) { location.href = to.path },
+  },
   {
     path: '/confirm/:action/:code',
     name: 'confirmation',