mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
14 lines
426 B
Clojure
14 lines
426 B
Clojure
;; Example climit.edn file
|
|
;; Required: permits
|
|
;; Optional: queue, ommited means Integer/MAX_VALUE
|
|
;; Optional: timeout, ommited means no timeout
|
|
;; Note: queue and timeout are excluding
|
|
{:update-file-by-id {:permits 1 :queue 3}
|
|
:update-file {:permits 20}
|
|
|
|
:derive-password {:permits 8}
|
|
:process-font {:permits 4 :queue 32}
|
|
:process-image {:permits 8 :queue 32}
|
|
|
|
:submit-audit-events-by-profile
|
|
{:permits 1 :queue 3}}
|