diff options
| author | lambda <pleromagit@rogerbraun.net> | 2018-12-29 13:27:59 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2018-12-29 13:27:59 +0000 |
| commit | 1555a5fef38dced753c418d736468712ea818975 (patch) | |
| tree | a7d1fdaa278c34f966dd7b62ba2a9ef125465d0f /src/components/oauth_callback/oauth_callback.js | |
| parent | a86b80b0544ca93a1b59ff521fd9b1e8bbc3f8c9 (diff) | |
| parent | f35dbaf064cfe14ee26053a729ae1c31b76800e2 (diff) | |
Merge branch 'restore-routes' into 'develop'
Restore old routes, enable user route as fallback.
See merge request pleroma/pleroma-fe!440
Diffstat (limited to 'src/components/oauth_callback/oauth_callback.js')
| -rw-r--r-- | src/components/oauth_callback/oauth_callback.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/oauth_callback/oauth_callback.js b/src/components/oauth_callback/oauth_callback.js index 18e24159..e3d45ee1 100644 --- a/src/components/oauth_callback/oauth_callback.js +++ b/src/components/oauth_callback/oauth_callback.js @@ -11,7 +11,7 @@ const oac = { }).then((result) => { this.$store.commit('setToken', result.access_token) this.$store.dispatch('loginUser', result.access_token) - this.$router.push('/~/main/friends') + this.$router.push({name: 'friends'}) }) } } |
