disable new user registration since we'll be using AD later

This commit is contained in:
Russ Long 2018-03-30 08:17:26 -04:00
parent d121397bd2
commit 9e3cd6213c

View File

@ -68,4 +68,13 @@ class RegisterController extends Controller
'password' => bcrypt($data['password']), 'password' => bcrypt($data['password']),
]); ]);
} }
public function showRegistrationForm()
{
return redirect('login');
}
public function register()
{
abort(404);
}
} }