Fix Subuser welcome email
When calling `route('server.index')` it appends `/api/servers` Not sure if this is a proper solution or not, but it fixes the issue.
This commit is contained in:
parent
2d95204e9a
commit
5eed8b1fe9
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue