Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Nov 12, 2019
1 parent 335a1ff commit f2714e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WelcomeNotificationServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public function boot()
{
Route::macro('handleWelcome', function (string $url = '') {
Route::prefix($url)->group(function () {
Route::get('welcome/{userId}/{token}', [WelcomeController::class, 'showWelcomeForm'])->name('welcome');
Route::post('welcome', [WelcomeController::class, 'savePassword'])->name('welcome.save-password');
Route::get('welcome/{userId}/{token}', ['\\' . WelcomeController::class, 'showWelcomeForm'])->name('welcome');
Route::post('welcome', ['\\' . WelcomeController::class, 'savePassword'])->name('welcome.save-password');
});
});

Expand Down

0 comments on commit f2714e9

Please sign in to comment.