mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-24 04:07:16 +00:00
3e2824a7ff
- Replace barrel import in AuditLogPanel.tsx to fix ad-blocker crash - Remove all Enterprise/Pro badges from nav and feature headers - Simplify upgrade CTAs to clean 'Upgrade to Pro' links - Update docs: PULSE_PRO.md, API.md, README.md, SECURITY.md - Align terminology: single Pro tier, no separate Enterprise tier Also includes prior refactoring: - Move auth package to pkg/auth for enterprise reuse - Export server functions for testability - Stabilize CLI tests
19 lines
328 B
Go
19 lines
328 B
Go
package auth
|
|
|
|
// Standard Actions
|
|
const (
|
|
ActionRead = "read"
|
|
ActionWrite = "write"
|
|
ActionDelete = "delete"
|
|
ActionAdmin = "admin"
|
|
)
|
|
|
|
// Standard Resources
|
|
const (
|
|
ResourceSettings = "settings"
|
|
ResourceAuditLogs = "audit_logs"
|
|
ResourceNodes = "nodes"
|
|
ResourceUsers = "users"
|
|
ResourceLicense = "license"
|
|
)
|