Sha256: b6d1bc4efa5b994cacdbcdbaef81eb51a597303868825d9a9137546a922468bb

Contents?: true

Size: 314 Bytes

Versions: 1

Compression:

Stored size: 314 Bytes

Contents

# frozen_string_literal: true

module Archangel
  ##
  # Controller concerns
  #
  module Controllers
    ##
    # Controller skip authorize concern
    #
    module SkipAuthorizableConcern
      extend ActiveSupport::Concern

      included do
        after_action :skip_authorization
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
archangel-0.4.0 app/controllers/concerns/archangel/controllers/skip_authorizable_concern.rb