refactor(HomeController): ranme EnvelopeKey route as Envelope

This commit is contained in:
2025-09-04 23:38:11 +02:00
parent 1d605e9da3
commit 1e6c9ed40e
4 changed files with 14 additions and 14 deletions

View File

@@ -10,7 +10,7 @@ class API {
}
static get REJECT_REDIR_URL() {
return `/envelopekey/${API.ENV_KEY}/rejected`;
return `/envelope/${API.ENV_KEY}/rejected`;
}
static get SHARE_URL() {

View File

@@ -145,7 +145,7 @@ class App {
if (result == true) {
// Redirect to success page after saving to database
window.location.href = `/EnvelopeKey/${this.envelopeKey}/Success`
window.location.href = `/Envelope/${this.envelopeKey}/Success`
}
break;