Sha256: 6321fe736911fcf497a33b2c5568c8159a0a917349fb3a4947de455fec2165a1
Contents?: true
Size: 537 Bytes
Versions: 10
Compression:
Stored size: 537 Bytes
Contents
module Ddr::Auth class Permissions READ = :read DOWNLOAD = :download ADD_CHILDREN = :add_children UPDATE = :update REPLACE = :replace ARRANGE = :arrange AUDIT = :audit GRANT = :grant ALL = [ READ, DOWNLOAD, ADD_CHILDREN, UPDATE, REPLACE, ARRANGE, AUDIT, GRANT ] def self.const_missing(name) if name == :EDIT warn "[DEPRECATION] `EDIT` is deprecated. Use `UPDATE` instead." return UPDATE end super end end end
Version data entries
10 entries across 10 versions & 1 rubygems