diff --git a/app/Domains/Event/Views/Partials/Overview.vue b/app/Domains/Event/Views/Partials/Overview.vue index dfb34ca..1f5105f 100644 --- a/app/Domains/Event/Views/Partials/Overview.vue +++ b/app/Domains/Event/Views/Partials/Overview.vue @@ -137,7 +137,7 @@ Anmelde-URL - {{dynamicProps.event.url}}
+ {{dynamicProps.event.urlShort}}
Event Code diff --git a/app/Resources/EventResource.php b/app/Resources/EventResource.php index 81519a0..7e14295 100644 --- a/app/Resources/EventResource.php +++ b/app/Resources/EventResource.php @@ -26,6 +26,7 @@ class EventResource extends JsonResource{ 'name' => $this->event->name, 'identifier' => $this->event->identifier, 'url' => 'https://' . app('tenant')->url . '/event/' . $this->event->identifier . '/signup', + 'urlShort' => 'https://' . app('tenant')->url . '/event/' . $this->event->identifier, 'location' => $this->event->location, 'postalCode' => $this->event->postal_code, 'email' => $this->event->email, diff --git a/docker/run-mareike.sh b/docker/run-mareike.sh index b479685..746ea95 100644 --- a/docker/run-mareike.sh +++ b/docker/run-mareike.sh @@ -29,7 +29,7 @@ rm package-lock.json rm package.json rm -rf docker rm -rf database -r m-rf app/Installer +rm-rf app/Installer php artisan migrate --force