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/endpoints/i | |
| 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/endpoints/i')
| -rw-r--r-- | src/api/endpoints/i/update.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/endpoints/i/update.js b/src/api/endpoints/i/update.js index fdb89644a7..4b4d1743da 100644 --- a/src/api/endpoints/i/update.js +++ b/src/api/endpoints/i/update.js @@ -5,7 +5,7 @@ */ import * as mongo from 'mongodb'; import User from '../../models/user'; -import { isValidBirthday } from '../../models/user'; +import { isValidName, isValidBirthday } from '../../models/user'; import serialize from '../../serializers/user'; import event from '../../event'; import config from '../../../conf'; @@ -25,8 +25,8 @@ module.exports = async (params, user, _, isSecure) => // Get 'name' parameter const name = params.name; if (name !== undefined && name !== null) { - if (name.length > 50) { - return rej('too long name'); + if (!isValidName(name)) { + return rej('invalid name'); } user.name = name; |