-
I am getting TypeError when I am trying to validate a dict with proper validation rule.
The validation_rule I am using : {'email': 'required|mail', 'password': 'required|min:6'}
The data I am tr…
-
Is it possible to call a validator function without doing any of the other Jazz (i.e altering the dom etc.)
For context, I want to create a custom validator which combines two other validators. Imagi…
-
Using #220 as inspiration, I'm frequently using this custom validator in my code:
```js
export default function validateChain(validators) {
return async (key, value, oldValue, changes, content)…
-
I'm planning to release a major update for form_validator to "fix" or "improve" some issues on existing releases.
Here's some of goals I'm planning to improve on next version:
1. Improving local…
-
我在 admin_users 表里增加了 email 字段:要使用 email 字段登录。
官方文档里有个自定义用户名
Laravel 默认使用 email 字段来认证。如果你想用其他字段认证,可以在 LoginController 里面定义一个 username 方法:
```
public function username()
{
return 'username';…
-
`validatePresence({ presence: true, on: 'email' })`
## Version
2.1.0
This is probably me misunderstanding the behavior of the validator.
## Steps to reproduce
```
export default {
em…
-
**Describe the bug**
After updating Unbound from 1.19.1 to 1.20.0, trust anchor auto-update fails.
The first time Unbound starts, it loads the trust anchor and resolves the domain name.
However, wh…
-
Sample taken directly from the Readme, with an `id` added to the schema:
```coffee
jsck = new JSCK.draft4
id: "http://www.google.com"
type: "object"
properties:
user:
type: "o…
-
I am trying to trigger an invalid input when I get a response from the server side after signup.
For example:
1. User signs up with jjj@jjj.com
2. Server replies with "email already taken"
3. …
-
`pkg/validator/validator.go` validates emails with a big long regexp; this probably does more harm than good:
- https://medium.com/hackernoon/the-100-correct-way-to-validate-email-addresses-7c4818f…