chore: remove waitlist redirect

This commit is contained in:
peaklabs-dev 2024-12-09 16:37:36 +01:00
parent 119c18468a
commit c27e2e328f
No known key found for this signature in database

View file

@ -50,13 +50,10 @@ public function boot(): void
if (! $settings->is_registration_enabled) {
return redirect()->route('login');
}
if (config('constants.waitlist.enabled')) {
return redirect()->route('waitlist.index');
} else {
return view('auth.register', [
'isFirstUser' => $isFirstUser,
]);
}
return view('auth.register', [
'isFirstUser' => $isFirstUser,
]);
});
Fortify::loginView(function () {