mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Stub and 404 registration routes
This commit is contained in:
parent
37d4cf3afb
commit
d2e2c1c05f
|
@ -12,4 +12,12 @@ class RegisterController extends Controller
|
|||
{
|
||||
$this->middleware('guest');
|
||||
}
|
||||
|
||||
public function showRegistrationForm() {
|
||||
abort(404,'Page not found');
|
||||
}
|
||||
|
||||
public function register() {
|
||||
abort(404,'Page not found');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue