Sha256: f080cf70fe6b8213d88b687572be0ac6aa5fc0688331adef20bde6d7ad4fbaee
Contents?: true
Size: 611 Bytes
Versions: 79
Compression:
Stored size: 611 Bytes
Contents
module Katello module Authorization::ContentCredential extend ActiveSupport::Concern include Authorizable def readable? authorized?(:view_content_credentials) end def editable? authorized?(:edit_content_credentials) end def deletable? authorized?(:destroy_content_credentials) end module ClassMethods def readable authorized(:view_content_credentials) end def editable authorized(:edit_content_credentials) end def deletable authorized(:destroy_content_credentials) end end end end
Version data entries
79 entries across 79 versions & 1 rubygems