summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore: ↵syuilo2021-10-141-6/+6
| | | | https://github.com/misskey-dev/misskey/commit/ba6959b8c1c4faafccdeb0f76eb26fc29e02af2d のリモート対応
* fix(api): ↵syuilo2021-10-141-0/+10
| | | | 管理者およびモデレーターをブロックできてしまう問題を修正
* refactor: use path aliassyuilo2021-10-092-2/+2
|
* feat: 未読の通知のみ表示する機能syuilo2021-10-091-0/+9
|
* fix(api): (0 , ms_1.default) is not a functionsyuilo2021-10-082-2/+2
|
* enhance(api): ↵syuilo2021-10-082-2/+14
| | | | | | ap系のエンドポイントをログイン必須化+レートリミット追加 他のサーバーにリクエストを送信するという性質上、攻撃の踏み台にされることがあるため
* feat: ↵syuilo2021-10-084-1/+55
| | | | | | | | | | | | | | | アカウント作成にメールアドレス必須にするオプション (#7856) * feat: アカウント作成にメールアドレス必須にするオプション * ui * fix bug * fix bug * fix bug * :art:
* fix(api): fix file type regexsyuilo2021-10-051-1/+1
|
* fix: truncate image descriptions (#7699)Johann1502021-09-302-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * move truncate function to separate file to reuse it * truncate image descriptions * show image description limit in UI * correctly treat null Co-authored-by: nullobsi <me@nullob.si> * make truncate Unicode-aware The strings that truncate returns should now be valid Unicode. PostgreSQL also counts Unicode Code Points instead of bytes so this should be correct. * move truncate to internal, validate in API Truncating could also be done in src/services/drive/add-file.ts or src/services/drive/upload-from-url.ts but those would also affect local images. But local images should result in a hard error if the image comment is too long. * avoid overwriting Co-authored-by: nullobsi <me@nullob.si>
* fix inboxQueue import (#7829)Johann1502021-09-231-1/+1
|
* feat(server): 管理者用アカウント削除API実装syuilo2021-09-222-1/+61
| | | | | 動作確認済み Resolve #7735
* feat: 凍結された場合のダイアログを実装 (#7811)syuilo2021-09-191-0/+2
| | | | | | | | | | | | | * feat: 凍結された場合のダイアログを実装 * Update CHANGELOG.md * Update basic.js * improve error handling * cypressなんもわからん * Update basic.js
* fix: アンテナの既読 (#7803)sousuke04222021-09-181-0/+5
| | | from: https://gitlab.com/xianon/misskey/-/commit/a89742319caea378f9cdd70c8ebd83bdf2178ff6
* fix(server): ↵syuilo2021-09-051-0/+5
| | | | ノート翻訳時に公開範囲が考慮されていない問題を修正
* fix: support DeepL pro accountsyuilo2021-08-243-1/+13
| | | | Fix #7648
* clean upsyuilo2021-08-211-5/+0
|
* feat: Implement api sw/unregister (#7611)tamaina2021-08-211-0/+27
| | | | | | | | | * Implement api sw/unregister * remove all mode * add changelog Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* enhance(server): Use job queue for account delete (#7668)syuilo2021-08-211-2/+11
| | | | | | | | | | | | | | | | | | | | | | | * enhance(server): Use job queue for account delete Fix #5336 * ジョブをひとつに * remove done call * clean up * add User.isDeleted * コミット忘れ * Update 1629512953000-user-is-deleted.ts * show dialog * lint * Update 1629512953000-user-is-deleted.ts
* fix: use correct query generate function (#7657)Johann1502021-08-201-2/+2
| | | Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* refactor: use path alias to improve readabilitysyuilo2021-08-192-2/+2
|
* fix: mochaが動かないため拡張子なしに戻したsyuilo2021-08-19297-1287/+1287
|
* refactor: refactoring importssyuilo2021-08-19297-1294/+1294
| | | | | | | | 将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
* enhance(server): Improve user block (#7640)syuilo2021-08-1721-10/+125
| | | | | | | | | | | | | | | | | | | | | * enhance(server): Improve user block * Update CHANGELOG.md * ユーザーリスト対応 * 相手から見れなくなるように * Update 1629004542760-chart-reindex.ts https://github.com/misskey-dev/misskey/commit/2365761ba5445f26c8b66b3b20ef4be44e70d549#commitcomment-54919821 * update test * add test * add todos * Update 1629004542760-chart-reindex.ts
* fix(server): ja-JPのような形式にDeepLが対応してないsyuilo2021-08-151-1/+4
|
* feat: ノートの翻訳機能syuilo2021-08-153-0/+97
| | | | Resolve #5213
* Introduce e2e testsyuilo2021-08-121-0/+21
|
* 認証の修正 (#7597)MeiMei2021-07-184-2/+24
| | | | | | | | | | | | | | | | | | | | | * authenticateのキャッシュを廃止 * 凍結ユーザーがサインイン出来てしまうのを修正 * 凍結ユーザーはストリーミング接続出来ないように * 他人のアクセストークンはrevoke出来ないように, 正常削除を待機するように * ユーザー/アクセストークンを無効化したらストリーミングを切断するように * Revert TODO * ストリーミングterminateは、ユーザー削除後に行うように * signinでsuspendは別のエラーにする * トークン再生成後のストリーミング切断は少し待つように * サスペンド後のストリーミング切断はローカルユーザーのみに
* Refactoringsyuilo2021-07-151-1/+1
|
* カスタム絵文字インポート時もemojiAddedイベントを発行す ↵syuilo2021-06-231-2/+7
| | | | るように
* fix api response definitionsyuilo2021-06-081-65/+2
|
* Remove entity descriptionssyuilo2021-06-0822-95/+0
| | | | #6627
* refactor typesyuilo2021-06-0812-19/+19
|
* Remove endpoint descriptionssyuilo2021-06-08197-1901/+0
| | | | #6627
* Supports Array ActivityStreams type (#7536)MeiMei2021-05-311-5/+5
| | | | | | | | | | | * Supports Array type * Fix * Fix Service to Note * Update type.ts Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* Resolve #7538syuilo2021-05-281-0/+7
|
* fix typesyuilo2021-05-281-2/+2
|
* Add image description support (#7518)nullobsi2021-05-281-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * recieve image descriptions under the name property * fix other components * use comment for alt and title * allow editing of file comment * allow editing of file comment in note dialog * federate note comments * use file instead of this * backend should accept comment on update * update now actually accepts comment * allow multiline descriptions * image should also have description attached * Update locales/ja-JP.yml Co-authored-by: rinsuki <428rinsuki+git@gmail.com> * Use custom component with side-by-side image * improve usability on mobile devices * revert changes * Update post-form-attaches.vue * Update drive.file.vue * Update media-caption.vue Co-authored-by: rinsuki <428rinsuki+git@gmail.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
* improve typessyuilo2021-05-282-2/+4
|
* Fix search-by-tag (#7531)MeiMei2021-05-231-16/+19
| | | | | | | | | | | | | * Fix search-by-tag * Revert "Fix search-by-tag" This reverts commit c971d1d5d82f2d8b58fdec76e42f4404339ab83a. * Fix typo * Remove unused var * インジェクションは[]を返すように
* Resolve #6563 (#7524)syuilo2021-05-211-2/+2
| | | | | | | * Resolve #6563 * Update note.ts * Update generate-visibility-query.ts
* Create get-index-stats.tssyuilo2021-05-081-0/+26
|
* Improve adsyuilo2021-05-081-0/+1
|
* Improve adsyuilo2021-05-073-1/+9
|
* Ad (#7495)syuilo2021-05-045-1/+212
| | | | | | | | | | | | | | | | | | | * wip * Update ad.vue * Update default.widgets.vue * wip * Create 1620019354680-ad.ts * wip * Update ads.vue * wip * Update ad.vue
* Password reset (#7494)syuilo2021-05-042-0/+118
| | | | | | | | | | | | | | | | | | | * wip * wip * Update well-known.ts * wip * clean up * Update request-reset-password.ts * Update forgot-password.vue * Update reset-password.ts * Update request-reset-password.ts
* ギャラリー投稿の編集と削除syuilo2021-04-262-0/+121
|
* Gallery (#7194)syuilo2021-04-2410-0/+489
| | | | | | | | | | | | | | | | | | | | | | | * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
* Make admin/update-remote-user publicsyuilo2021-04-231-2/+1
|
* Resolve #7457syuilo2021-04-181-0/+42
|
* Implement user online statussyuilo2021-04-172-9/+15
| | | | | Resolve #7422 Fix #7424