Stub and 404 registration routes

This commit is contained in:
snipe 2017-12-19 22:14:51 -08:00
parent 37d4cf3afb
commit d2e2c1c05f

View file

@ -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');
}
}