UNPKG

@openinc/parse-server-opendash

Version:
23 lines (22 loc) 973 B
/** * Permissions that should be registered in the database by default when the server starts. * The ACLs are set to od-admin only. * Adding new Permissions here requires the server to restart for registering those. */ export declare namespace Permissions { enum MAINTENANCE { ticket = "maintenance:can-create-ticket", schedule = "maintenance:can-create-schedule", message = "maintenance:can-create-message", machinelog_ticket = "maintenance:can-create-machinelog-ticket", machinelog_schedule = "maintenance:can-create-machinelog-schedule", machinelog_message = "maintenance:can-create-machinelog-message", global = "maintenance:can-access-global", monitor = "maintenance:can-access-monitor", monitoring = "maintenance:can-access-monitoring", kanban_view = "maintenance:can-update-kanban-view" } enum CORE { adminoverview = "opendash:can-access-admin-overview" } }