monopayments / iban.im

Shorten, create and share memorable links for IBANS
https://iban.im
Apache License 2.0
68 stars 10 forks source link

email is not verified #19

Open hmert opened 4 years ago

hmert commented 4 years ago
enesacikoglu commented 4 years ago

Hello @hmert , It seems already has a validation on frontend ,do we need a backend validation ? If so ,what about to use govalidator for all validations.

                email: [
                    v => !!v || 'Mail is required',
                    v => /.+@.+/.test(v) || 'please use a valid mail adress',
                ],
fakturk commented 4 years ago

@enesacikoglu We did not validate the emails on the backend, you can implement govalidator for email validation =)