- permission.ts: effectiveRole 删除 D11 冻结分支,输入不再含开关字段 - treeService: 停止读 FileLibProjectSettings;建项目不再写默认行 - grantService/routes: 删 setIndependentPermission 与 PUT 路由;节点详情 DTO 去掉 independentPermission - filelib-web: 概览 tab 移除开关;NodeDetail 类型同步 - 测试: 单测/集成改为断言恒生效语义;ADR-0030 废除契约 D11/P5 - FileLibProjectSettings 表保留(存量行忽略,不再读写),审计词表保留历史读取
2.3 KiB
ADR 0030: Project Grants Are Always Live; The Independent-Permission Toggle Is Removed
Status
Accepted. Supersedes the file-library contract rule D11 / P5 (《文件库-接口契约.md》, since deleted; recoverable from git history) which introduced the per-project "独立权限" (independent permission) switch.
Context
D11 gave each PROJECT a toggle (FileLibProjectSettings.independentPermissionsEnabled,
default off). While off, project-level non-creator grants were frozen — present in
FileLibGrant but excluded from effectiveRole; ancestor-chain grants and the creator's
auto-grant were unaffected. The intent was to support two workflows: "project follows the
folder's ACL" (off) vs "project has its own ACL" (on).
In practice the toggle surprised operators twice: grants appeared to "not work" until someone found and flipped a per-project switch buried in the 概览 tab, and the frozen state was indistinguishable from missing grants in the UI. The product decision is that project-level grants should simply always be live.
Decision
- Project-level grants always participate in
effectiveRole. The freeze branch inhub/src/database/filelib/permission.tsis deleted;EffectiveRoleInputno longer carriesindependentPermissionsEnabled. - The toggle surface is removed end-to-end:
PUT /database/api/projects/:id/independent-permission,grantService.setIndependentPermission, theindependentPermissionfield in the node detail DTO, and the 概览 tab switch infilelib-web. FileLibProjectSettingsbecomes vestigial. The table stays (existing rows are ignored, no data migration); new projects no longer get a default row. It may be dropped in a future migration once nothing references it.- Audit action vocabulary
independent_enable/independent_disableis retained for reading historical audit entries; no new entries are produced.
Behavior change for existing deployments: projects whose toggle was off now have their project-level grants effective immediately — this is the intended effect of the decision.
Consequences
- Permission semantics shrink to the single P6 rule:
effective = max(grants on self ∪ ancestors for user ∪ resolved groups), no exceptions by node kind. - One less state dimension in tests and in the admin UI.