Created
May 11, 2020 21:46
-
-
Save sygn/2b13d95d845b9e4ec2239a87c90d73e3 to your computer and use it in GitHub Desktop.
Revisions
-
sygn created this gist
May 11, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // email validation // .test('checkDuplUsername', 'same name exists', function (value) { // return new Promise((resolve, reject) => { // kn.http({ // url: `/v1/api/${value}`, // method: 'head', // }).then(() => { // // exists // resolve(false) // }).catch(() => { // // note exists // resolve(true) // }) // }) // })