use url generation helper
Signed-off-by: Vinzenz Rosenkranz <vinzenz.rosenkranz@posteo.de>
This commit is contained in:
Родитель
6c5f15f446
Коммит
3a6e8b1c02
|
@ -91,13 +91,11 @@ export default {
|
|||
]),
|
||||
|
||||
loginLink() {
|
||||
return window.location.origin.concat(
|
||||
'/index.php/login?redirect_url=',
|
||||
this.$router.resolve({
|
||||
name: 'publicVote',
|
||||
params: { token: this.$route.params.token }
|
||||
}).href
|
||||
)
|
||||
const redirectUrl = this.$router.resolve({
|
||||
name: 'publicVote',
|
||||
params: { token: this.$route.params.token }
|
||||
}).href;
|
||||
return OC.generateUrl('login?redirect_url=' + redirectUrl);
|
||||
},
|
||||
|
||||
personalLink() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче