summaryrefslogtreecommitdiff
path: root/packages/backend/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 通知部分は残すsyuilo2023-03-032-54/+35
| | | | Co-Authored-By: rinsuki <428rinsuki+contact.github@gmail.com>
* Revert "fix(server): DriveFile related N+1 query when call note packMany ↵syuilo2023-03-035-66/+58
| | | | | | (#10133)" This reverts commit 452a48e7f4782cf9bdf08b554264ab3cdcb12685.
* test(backend): APIテストの復活 (#10163)Kagami Sascha Rosylight2023-03-0311-55/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Revert 1c5291f8185651c231903129ee7c1cee263f9f03 * APIテストの復活 * apiテストの移行 * moduleNameMapper修正 * simpleGetでthrowしないように status確認しているので要らない * longer timeout * ローカルでは問題ないのになんで * case sensitive * Run Nest instance within the current process * Skip some setIntervals * wait for 5 seconds * kill them all!! * logHeapUsage: true * detectOpenHandlesがじゃましているらしい * maxWorkers=1? * restore drive api tests * workerIdleMemoryLimit: 500MB * 1024MiB * Wait what
* fix(server): ↵kabo24682023-03-031-0/+6
| | | | | | | チャンネルでミュートが正しく機能していないのを修正 (#10166) * fix(server): チャンネルでミュートが正しく機能していないのを修正 * Update CHANGELOG.md
* fix(server): DriveFile related N+1 query when call note packMany (#10133)rinsuki2023-03-035-58/+66
| | | | | | | | | | | | | | | | | * fix(server): DriveFile related N+1 query when call note packMany * Update packages/backend/src/misc/is-not-null.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * ignore lint * 途中でやめたやつが混入していた * fix: 順番通りである必要がある場所で順番通りになっていなかった --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* :art:syuilo2023-03-011-0/+1
|
* fix of #10145syuilo2023-03-013-3/+3
|
* feat: 時限ロール (#10145)syuilo2023-03-018-48/+128
| | | | | | | | | | | | | | | * feat: 時限ロール * クライアントから期限を確認できるように * リファクタとか * fix test * fix test * fix test * clean up
* enhance(server): make antenna handle cwsyuilo2023-02-281-7/+11
| | | | Resolve #10140
* fix(sw): ↵tamaina2023-02-281-6/+14
| | | | | | | | | | | | | プッシュ通知でカスタム絵文字リアクションを表示できるように (#10122) * fix(sw): プッシュ通知でカスタム絵文字リアクションを表示できるように Fix #10117 /emoji/*.webpにbadgeモードを * ? * :v: * fix
* fix: ↵tamaina2023-02-281-1/+4
| | | | | | | | | | | | | | | 外部メディアプロキシ使用時にアバタークロップができない問題を修正 (#10142) * wip * fix * Update packages/frontend/src/scripts/media-proxy.ts Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* fix Serialized typesyuilo2023-02-282-1/+11
|
* fix(server): ↵syuilo2023-02-281-2/+2
| | | | メールアドレス更新時にバリデーションが正しく行われていないのを修正
* fix(backend): return HTTP 404 for any unknown api endpoint paths (#10130)Kagami Sascha Rosylight2023-02-271-2/+18
| | | | | * fix(backend): return HTTP 400 for any invalid api endpoint paths * 404
* fix(server): 単純にrenoteできないのを修正tamaina2023-02-262-0/+16
|
* refactorsyuilo2023-02-261-11/+5
|
* ホームタイムラインの読み込みでクエリタイムアウトに ↵xianon2023-02-261-10/+13
| | | | るのを修正する (#10106)
* fix(server): エラーのスタックトレースは返さないようにsyuilo2023-02-261-2/+5
| | | | Fix #10064
* [Fix] fixed an typo in error message (#10102)daima36292023-02-261-1/+1
|
* test(server): add validation test of api:notes/create (#10090)tamaina2023-02-2611-198/+372
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix(server): notes/createのバリデーションが効いていない Fix #10079 Co-Authored-By: mei23 <m@m544.net> * anyOf内にバリデーションを書いても最初の一つしかチェックされない * :v: * wip * wip * :v: * RequiredProp * Revert "RequiredProp" This reverts commit 74693900119a590263106fa3adefd008d69ce80c. * add api:notes/create * fix lint * text * :v: * improve readability --------- Co-authored-by: mei23 <m@m544.net> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* feat: in-channel featured notesyuilo2023-02-251-0/+3
| | | | Resolve #9938
* fix(client): Android ↵tamaina2023-02-251-0/+8
| | | | | | | ChromeでPWAとしてインストールできない問題を修正 (#10069) * fix(client): Android ChromeでPWAとしてインストールできない問題を修正 * 順番関係ある?
* 未知のユーザーが deleteActor されたら処理をスキップする ↵xianon2023-02-251-2/+4
| | | | (#10067)
* fix(server): ↵tamaina2023-02-241-0/+10
| | | | | | | notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする (#9911) * fix(server): notes/createで、fileIdsと見つかったファイルの数が異なる場合はエラーにする * NO_SUCH_FILE
* test(backend): restore ap-request tests (#9997)Kagami Sascha Rosylight2023-02-241-38/+34
| | | Co-authored-by: tamaina <tamaina@hotmail.co.jp>
* fix: ↵tamaina2023-02-235-20/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | i/notificationsで古い通知タイプを許容するなど、古い通知タイプの清算 (#10042) * wip * fix * create migration * oops * fix front const * changelog * fix type * fix * wip * Revert "wip" This reverts commit 6cdb3600e280be3550b8b6353b2c7930f7b31438. * enumのこす * fix --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* enhance: make pwa icon maskable (#10033)Shogo Sensui2023-02-231-2/+4
|
* Revert "Allow configuring the listen host (#9924)"syuilo2023-02-223-6/+4
| | | | This reverts commit 3dfe3aa9a48cba0570508ef037c5289894fa731b.
* Allow configuring the listen host (#9924)ledlamp2023-02-223-4/+6
|
* MFMのDOM ParserをJSDOMからhappy-domに変更する (#10016)potpro2023-02-221-7/+7
| | | Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* fix(server): tweak admin/show-user apisyuilo2023-02-221-6/+0
| | | | Fix #9883
* fix typessyuilo2023-02-223-6/+6
|
* fix typesyuilo2023-02-221-2/+2
|
* chore: add tiny definition for redis-lock (#9971)dojineko2023-02-224-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | * add tiny definition for redis-lock * Update packages/backend/src/@types/redis-lock.d.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * fix type name * add @typescript-eslint/naming-convention * define taskToPerform type * chore: use default settings for `@typescript-eslint/naming-convention` * set `format:none` to typeParameter (default) * ignore lines to be treated as exceptions * chore: fix naming --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* fix: ↵tamaina2023-02-221-53/+54
| | | | | | | | | | | | MkUserSelectDialog/search-by-username-and-hostでローカルユーザーを絞って検索できない問題を修正 (#9943) * fix: MkUserSelectDialog/search-by-username-and-hostでローカルユーザーを絞って検索できない問題を修正 Fix #9627 * update CHANGELOG.md * clean up * search-by-username-and-host大改造
* enhance: ↵syuilo2023-02-2210-18/+260
| | | | exploreで公開ロール一覧とそのメンバーを閲覧できるように
* fix(server): improve security of admin/drive/show-filesyuilo2023-02-211-4/+12
|
* 削除済みのユーザーが deleteActor ↵xianon2023-02-201-1/+1
| | | | される時の動作を修正する (#9980)
* :art: 2FA設定のデザイン向上 / ↵tamaina2023-02-2010-26/+200
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | セキュリティキーの名前を変更できるように (#9985) * wip * fix * wip * wip * :v: * rename key * :art: * update CHANGELOG.md * パスワードレスログインの判断はサーバーで * 日本語 * 日本語 * 日本語 * 日本語 * :v: * fix * refactor * トークン→確認コード * fix password-less / qr click * use otpauth * 日本語 * autocomplete * パスワードレス設定は外に出す * :art: * :art: --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* refactor: 型エラー修正 / Fix type errors backend (#9983)noonworks2023-02-203-5/+5
| | | | | | | | | | | | | | | | | * refactor: fix type errors in backend * revert some changes * なるべくJS挙動を変えない方法に修正 * Update packages/backend/src/server/api/ApiCallService.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * コンフリクトするファイルを削除 --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
* chore(server): tweak notes/featured apisyuilo2023-02-191-1/+1
|
* refactor: fix typessyuilo2023-02-171-1/+2
|
* refactor: fix typessyuilo2023-02-1719-117/+90
|
* refactor: fix typessyuilo2023-02-174-7/+5
|
* refactor: fix typessyuilo2023-02-172-0/+53
|
* perf(client): ウェルカムページを最適化 (#9960)tamaina2023-02-172-2/+5
| | | | | * perf(client): ウェルカムページの最適化 * remove max
* style(backend): fix all eslint errors (#9967)Kagami Sascha Rosylight2023-02-179-12/+11
|
* refactor: remove all unused imports (#9951)Kagami Sascha Rosylight2023-02-16171-238/+113
| | | Co-authored-by: tamaina <tamaina@hotmail.co.jp>
* fix(server): ↵tamaina2023-02-161-0/+1
| | | | | | | | マイグレーションad1676438468213が通らないのを修正 (#9963) * fix(server): マイグレーションad1676438468213が通らないのを修正 Fix #9962 * fix
* fix(server): dropGroupマイグレーションが通るように (#9961)tamaina2023-02-161-1/+5
|