ข้ามสารบัญไปยังเนื้อหา
อัปเดต 2026-09-07
RBAC role tiers
free account → ทั้งคลัง → ทั้งระบบ → GB → admin
Five ordered access levels — free account, the ทั้งคลัง package, the ทั้งระบบ package, GB (case-study partners), and admin — gate the platform from read-only articles up through the full calculator library, the flagship apps, the Case Study section, and admin tools.
เมื่อไรจึงใช้
- You're deciding what a new feature should be gated behind
- You're debugging why a user can't see a calculator or the Case Study section
- You need to explain the access model to a customer asking what their plan unlocks
คำนวณอย่างไร
A free account reads articles and uses EVERY calculator in full — deep features included; the ทั้งระบบ package adds the flagship apps (Model Builder, PHA/HAC, commissioning); GB adds the Case Study section; admin adds site administration. Gating is enforced with hooks like useIsPro() / useIsGB() and the SubscriberGate component, backed by a server-side role check.
ข้อควรระวัง
noteThe ladder is strictly ordered and every gate is a rank ">=" check, so a GB account already carries everything the ทั้งระบบ package unlocks — read the specific hook a surface uses (useIsPro / useIsGB) to see which rung it actually enforces, rather than assuming from the label.
noteThe ทั้งคลัง rung still EXISTS in the code (grandfathered accounts hold it) but it is withdrawn from sale and no longer gates anything: since 2026-09-02 every calculator is free to everyone, deep features included.
ที่เกี่ยวข้อง