Skip to content

Commit

Permalink
enhance(backend): 노트 편집 제한 강화
Browse files Browse the repository at this point in the history
	- 5분에 10번 편집할 수 있던 것을 5분에 5번 편집할 수 있도록 제한함.
  • Loading branch information
noridev committed Nov 6, 2024
1 parent 3394242 commit e5fd3bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
- Fix: 노트 삭제 예약 기한을 `기간 지정`으로 설정한 경우 노트가 즉시 삭제될 수 있음

### Server
- Enhance: 노트 편집 제한 강화
- 5분에 10번 편집할 수 있던 것을 5분에 5번 편집할 수 있도록 제한함.
- Fix: 이벤트가 포함된 노트를 작성할 때 URL란에 링크를 첨부하면 리모트에서 잘못된 링크로 열릴 수 있음
- 리모트 서버에서 `리모트에서 보기`를 클릭하면 원본 노트의 URL이 아닌, 이벤트의 URL란에 입력한 링크로 이동될 수 있습니다.

Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/endpoints/notes/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const meta = {

limit: {
duration: ms('5min'),
max: 10,
max: 5,
minInterval: ms('1sec'),
},

Expand Down

0 comments on commit e5fd3bb

Please sign in to comment.