diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-01 20:35:54 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-01 20:35:54 +0900 |
| commit | 4f5928c575d55601bf7fc7ae93dbaaa312d4aca1 (patch) | |
| tree | 9776f67479534001eb82c24bd3eabdacf2fdfdd5 /src/api/models/user.ts | |
| parent | [Test] Add a test (diff) | |
| download | sharkey-4f5928c575d55601bf7fc7ae93dbaaa312d4aca1.tar.gz sharkey-4f5928c575d55601bf7fc7ae93dbaaa312d4aca1.tar.bz2 sharkey-4f5928c575d55601bf7fc7ae93dbaaa312d4aca1.zip | |
[API] Fix bug and extract validator
Diffstat (limited to 'src/api/models/user.ts')
| -rw-r--r-- | src/api/models/user.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/models/user.ts b/src/api/models/user.ts index 5246b7c02f..55f8b7faa8 100644 --- a/src/api/models/user.ts +++ b/src/api/models/user.ts @@ -15,6 +15,10 @@ export function validatePassword(password: string): boolean { return typeof password == 'string' && password != ''; } +export function isValidName(name: string): boolean { + return typeof name == 'string' && name.length > 50 && name.trim() != ''; +} + export function isValidBirthday(birthday: string): boolean { return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday); } |