Skip to content

Commit

Permalink
Merge pull request #69 from niri-la/disallow-edit-by-default
Browse files Browse the repository at this point in the history
chore: disallow editing notes by default
  • Loading branch information
anatawa12 authored Oct 1, 2023
2 parents 2dd2b44 + 1d86e2b commit f80af5b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
-->

## 2023.9.3-kinel.2 (unreleased)

### General
- noteがデフォルトで編集できないようになりました。

### Client

### Server

## 2023.9.3-kinel.1
### General
- Enhance: ノートの翻訳機能の利用可否をロールで設定可能に
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/core/RoleService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const DEFAULT_POLICIES: RolePolicies = {
gtlAvailable: true,
ltlAvailable: true,
canPublicNote: true,
canEditNote: true,
canEditNote: false,
canInvite: false,
inviteLimit: 0,
inviteLimitCycle: 60 * 24 * 7,
Expand Down

0 comments on commit f80af5b

Please sign in to comment.