Whoops, dont mess up logging in if the code starts with 0

This commit is contained in:
Dane Everitt 2019-06-22 13:54:36 -07:00
parent d1880af18d
commit ad61774171
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -25,7 +25,7 @@ class LoginCheckpointRequest extends FormRequest
{
return [
'confirmation_token' => 'required|string',
'authentication_code' => 'required|int',
'authentication_code' => 'required|numeric',
];
}
}