Sha256: 8ee6b9ce1911d079ccd89957980badf0a291287d0dad3bb900f989516e05bef7

Contents?: true

Size: 395 Bytes

Versions: 2

Compression:

Stored size: 395 Bytes

Contents

require_dependency "jive_add_ons/application_controller"

module Concerns
	module Controllers
		module AddOns
			extend JiveAddOns::Concerns::Controllers::AddOns
		end
	end
end

module JiveAddOns
	class AddOnsController < ApplicationController
		include Concerns::Controllers::AddOns
		rescue_from ActionController::BadRequest, :with => :failure

		before_filter :validate_authenticity
	end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jive_add_ons-0.0.3 app/controllers/jive_add_ons/add_ons_controller.rb
jive_add_ons-0.0.2 app/controllers/jive_add_ons/add_ons_controller.rb