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

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));
}
}