Rustelo/resources/nickel/rbac/features/websocket.ncl

11 lines
515 B
Text
Raw Normal View History

2026-07-18 20:16:16 +01:00
# RBAC — websocket feature permissions
#
# Covers: /api/ws endpoint for real-time updates (RBAC hot-reload, JWT lifecycle).
# Enable when using WebSocket support.
{
admin = [{ resource = "endpoint", pattern = "/api/ws", outcome = "allow", methods = ["GET"], effects = [] }],
user = [{ resource = "endpoint", pattern = "/api/ws", outcome = "allow", methods = ["GET"], effects = [] }],
guest = [{ resource = "endpoint", pattern = "/api/ws", outcome = "allow", methods = ["GET"], effects = [] }],
}