disable new user registration since we'll be using AD later
This commit is contained in:
parent
d121397bd2
commit
9e3cd6213c
@ -68,4 +68,13 @@ class RegisterController extends Controller
|
||||
'password' => bcrypt($data['password']),
|
||||
]);
|
||||
}
|
||||
public function showRegistrationForm()
|
||||
{
|
||||
return redirect('login');
|
||||
}
|
||||
|
||||
public function register()
|
||||
{
|
||||
abort(404);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user