Merge pull request #2008 from Sir3lit/emailfix

Fix Subuser welcome email
This commit is contained in:
Dane Everitt 2020-05-09 14:47:47 -07:00 committed by GitHub
commit b94781e40e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,6 +56,6 @@ class AddedToServer extends Notification implements ShouldQueue
->greeting('Hello ' . $this->server->user . '!')
->line('You have been added as a subuser for the following server, allowing you certain control over the server.')
->line('Server Name: ' . $this->server->name)
->action('Visit Server', route('server.index', $this->server->uuidShort));
->action('Visit Server', url('/server/' . $this->server->uuidShort));
}
}