summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | remove duplicate importdakkar2024-11-081-1/+0
| * | | | | | | | | fix merge mistakes in `admin/accounts/create.ts`dakkar2024-11-081-2/+2
| * | | | | | | | | Merge tag '2024.10.1' into feature/2024.10dakkar2024-11-0817-88/+425
| |\ \ \ \ \ \ \ \ \ | | | |_|/ / / / / / | | |/| | | | | | |
| | * | | | | | | | feat: リモートサーバーのサーバー情報を収集しないオプ...syuilo2024-10-132-0/+10
| | * | | | | | | | feat: ユーザーの名前に禁止ワードを設定できるように (#14...かっこかり2024-10-133-1/+37
| | * | | | | | | | wip (#14745)syuilo2024-10-115-0/+26
| | * | | | | | | | feat(backend): 7日間運営のアクティビティがないサーバを自...おさむのひと2024-10-111-2/+2
| | * | | | | | | | fix: admin/emoji/update で不正なエラーが発生する (#14750)FineArchs2024-10-111-18/+15
| | * | | | | | | | fix(backend): correct `admin/abuse-user-reports` schema (#14711)zyoshoka2024-10-051-2/+14
| | * | | | | | | | feat: 通報の強化 (#14704)syuilo2024-10-055-2/+127
| | * | | | | | | | enhance: 人気のPlayを10件以上表示できるように (#14443)おさむのひと2024-10-051-11/+11
| | * | | | | | | | #14675 レビューの修正 (#14705)かっこかり2024-10-051-1/+1
| | * | | | | | | | fix: signin の資格情報が足りないだけの場合はエラーにせ...かっこかり2024-10-053-49/+25
| | * | | | | | | | enhance(frontend): サインイン画面の改善 (#14658)かっこかり2024-10-041-12/+74
| | * | | | | | | | initialPassword -> setupPasswordsyuilo2024-10-031-4/+4
| | * | | | | | | | fix(misskey-js): type fixes related to signup and signin (#14679)zyoshoka2024-10-031-5/+7
| | * | | | | | | | feat: サーバー初期設定時に初期パスワードを要求できる...かっこかり2024-10-031-1/+37
| | * | | | | | | | fix(backend): 連合限定先が間違って連合しない先に代入され...Kisaragi2024-10-031-1/+1
| | * | | | | | | | enhance(backend): notify new login (#14673)syuilo2024-10-031-3/+17
| | * | | | | | | | enhance: require captcha for signin (#14655)syuilo2024-10-031-0/+37
* | | | | | | | | | merge: Fix rate limits under multi-node environments (!809)Hazelnoot2024-12-1513-148/+215
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | clarify naming of legacy rate limit methodsHazelnoot2024-12-111-4/+4
| * | | | | | | | | | increase chart rate limits (fixes 429s in control panel / info pages)Hazelnoot2024-12-1112-36/+48
| * | | | | | | | | | use atomic variant of Leaky Bucket for safe concurrent rate limitsHazelnoot2024-12-111-91/+113
| * | | | | | | | | | fix redis transaction implementationHazelnoot2024-12-101-115/+101
| * | | | | | | | | | enable rate limits for dev environmentHazelnoot2024-12-091-1/+1
| * | | | | | | | | | fix rate limits under multi-node environmentsHazelnoot2024-12-091-69/+116
| | |_|_|_|_|_|/ / / | |/| | | | | | | |
* | | | | | | | | | fix passing rate limiting info via ApiErrordakkar2024-12-131-2/+1
* | | | | | | | | | on 429, retry `fetchAccount` instead of failingdakkar2024-12-131-0/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
* | | | | | | | | safer typings for `userNeedsPublishing` and `profileNeedsPublishing`Hazelnoot2024-12-121-6/+12
* | | | | | | | | federate profile when changing `enableRss` valueHazelnoot2024-12-121-1/+1
* | | | | | | | | Add "enable RSS" user privacy toggleHazelnoot2024-12-121-0/+2
* | | | | | | | | merge: Enable by default and federate "hide online status" (resolves #823) (!...dakkar2024-12-121-1/+1
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ |/| | | | | | | |
| * | | | | | | | federate profile when `hideOnlineStatus` changesHazelnoot2024-12-121-1/+1
| |/ / / / / / /
* | | | | | | | fix deletion of scheduled noteMarie2024-12-091-1/+1
* | | | | | | | Apply suggestionsMarie2024-12-091-1/+1
* | | | | | | | upd: add notification for failures, add reasons for failure, apply suggestionsMarie2024-12-091-3/+2
* | | | | | | | fix: drive content not being loadedMarie2024-12-092-25/+6
* | | | | | | | feat: 노트 게시를 예약할 수 있음 (yojo-art/cherrypick#483, [Type4n...NoriDev2024-12-096-1/+608
|/ / / / / / /
* | | | | | | fix type errors from new rate limit definitionsHazelnoot2024-12-084-12/+13
* | | | | | | fix rate limit scaling (it's no longer inverted)Hazelnoot2024-12-081-2/+2
* | | | | | | bypass rate limits when factor is 0Hazelnoot2024-12-081-2/+2
* | | | | | | increase rate limit for `/api/endpoint` based on real-world testingHazelnoot2024-12-081-3/+6
* | | | | | | move all Rate Limit type defs to rate-limit-utils.tsHazelnoot2024-12-083-126/+18
* | | | | | | check for invalid rate limit inputsHazelnoot2024-12-081-3/+14
* | | | | | | fix NaN from extremely high rate limitsHazelnoot2024-12-081-1/+1
* | | | | | | support fractional rate limit scalingHazelnoot2024-12-081-13/+9
* | | | | | | fix import order in SigninWithPasskeyApiServiceHazelnoot2024-12-081-1/+1
* | | | | | | revert un-needed changes to RateLimiterServiceHazelnoot2024-12-081-8/+8
* | | | | | | separate SkRateLimiterService from RateLimiterService and update all usagesHazelnoot2024-12-076-89/+47