Updates on errors

Former-commit-id: 6523e78400ba84510f754e05f589b8f7c779319f [formerly 2d473b45716aaf6e35f2757bf9dc27adcafefd88] [formerly 5b34db9a57e050b307f1c5803cad82d2af155867 [formerly c206bea84a3e667047920d7dbcd0fc1c89cbced9]]
Former-commit-id: 703d059a7455131dfa20d89050c40367f692b4b5 [formerly a320aa2603c47685e484cae3715eb788b1218fe9]
Former-commit-id: 3819065ec37278f32ebceeda9cbb7af6f8723392
This commit is contained in:
Henrique Dias
2017-07-08 11:51:24 +01:00
parent e6efec5682
commit ca9646ff9e
9 changed files with 86 additions and 18 deletions

View File

@@ -6,6 +6,9 @@ import Files from '@/components/Files'
import Users from '@/components/Users'
import User from '@/components/User'
import Settings from '@/components/Settings'
import error403 from '@/components/errors/403'
import error404 from '@/components/errors/404'
import error500 from '@/components/errors/500'
import auth from '@/utils/auth.js'
import store from '@/store'
@@ -53,6 +56,21 @@ const router = new Router({
name: 'Settings',
component: Settings
},
{
path: '/403',
name: 'Forbidden',
component: error403
},
{
path: '/404',
name: 'Not Found',
component: error404
},
{
path: '/500',
name: 'Internal Server Error',
component: error500
},
{
path: '/users',
name: 'Users',