diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-09 22:58:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-09 22:58:49 +0900 |
| commit | 427dd7af18051020ea5fb6cc2fc26dac70d14a7e (patch) | |
| tree | 9dbc8fb3ec2fbb521a9abf0dfc51c334b482dfa5 /src/api | |
| parent | [Client] Fix bug (diff) | |
| download | sharkey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.gz sharkey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.tar.bz2 sharkey-427dd7af18051020ea5fb6cc2fc26dac70d14a7e.zip | |
1000文字まで受け付けるように
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/endpoints/posts/create.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/posts/create.js b/src/api/endpoints/posts/create.js index 3a527023c1..dc73725a7f 100644 --- a/src/api/endpoints/posts/create.js +++ b/src/api/endpoints/posts/create.js @@ -18,7 +18,7 @@ import config from '../../../conf'; /** * 最大文字数 */ -const maxTextLength = 500; +const maxTextLength = 1000; /** * 添付できるファイルの数 |