mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
🚸 redirect to request files
This commit is contained in:
parent
e42136c17e
commit
842998bdb6
1 changed files with 8 additions and 5 deletions
13
src/App.vue
13
src/App.vue
|
|
@ -32,16 +32,16 @@
|
|||
:title="t('libresign', 'Back to sign')"
|
||||
exact
|
||||
@click="goToSign" />
|
||||
<AppNavigationItem
|
||||
:to="{ name: 'signFiles' }"
|
||||
:title="t('libresign', 'Files')"
|
||||
icon="icon-files-dark"
|
||||
exact />
|
||||
<AppNavigationItem
|
||||
:to="{name: 'requestFiles'}"
|
||||
:title="t('libresign', 'Request')"
|
||||
icon="icon-rename"
|
||||
exact />
|
||||
<AppNavigationItem
|
||||
:to="{ name: 'signFiles' }"
|
||||
:title="t('libresign', 'Files')"
|
||||
icon="icon-files-dark"
|
||||
exact />
|
||||
<AppNavigationItem
|
||||
:to="{name: 'validation'}"
|
||||
:title="t('libresign', 'Validate')"
|
||||
|
|
@ -119,6 +119,9 @@ export default {
|
|||
return this.$route.path === '/'
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.$router.replace({ name: 'requestFiles' })
|
||||
},
|
||||
methods: {
|
||||
goToSign() {
|
||||
const route = this.$router.resolve({ name: 'SignPDF', params: { uuid: this.back_to_signature } })
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue