* Update rubocop-todo.yml with new violations * Fix Layout/EmptyLine* rules * Fix Layout/Indentation* rules * Fix remaining Layout/* rules * Fix Lint/DuplicateMethods by removing unused accessor * Fix Lint/IneffectiveAccessModifier * Fix Lint/MissingCopEnableDirective * Re-run rubocop auto gen config * Fix Layout/RescueEnsureAlignment * Fix Naming/* rules * Fix some RSpec/* rules * Fix typos * Fix RSpec/LetBeforeExamples * Series should only be an attr_writer, not an attr_accessor * Fix RSpec/InstanceVariable * Fix RSpec/InstanceVariable * Fix RSpec/RepeatedDescription and RSpec/RepeatedExample * Fix Style/ClassAndModuleChildren * Fix Style/ConditionalAssignment * Fix some Style/* rules * Trigger Travis CI build because failing tests are not failing locally * Revert "Fix Style/ClassAndModuleChildren" This reverts commit 1686801d8a1516ba1894f79e24401a20dea65f99.
30 lines
995 B
Ruby
30 lines
995 B
Ruby
# All Administrate controllers inherit from this `Admin::ApplicationController`,
|
|
# making it the ideal place to put authentication logic or other
|
|
# before_filters.
|
|
#
|
|
# If you want to add pagination or other controller-level concerns,
|
|
# you're free to overwrite the RESTful controller actions.
|
|
module Admin
|
|
class ApplicationController < Administrate::ApplicationController
|
|
include Pundit
|
|
before_action :authorize_admin
|
|
|
|
def order
|
|
@order ||= Administrate::Order.new(params[:order] || "id", params[:direction] || "desc")
|
|
end
|
|
|
|
def valid_request_origin?
|
|
# Temp monkey patch. Since we use https at the edge via fastly I think our protocol expectations
|
|
# are out of wack.
|
|
raise InvalidAuthenticityToken, NULL_ORIGIN_MESSAGE if request.origin == "null"
|
|
|
|
request.origin.nil? || request.origin.gsub("https", "http") == request.base_url.gsub("https", "http")
|
|
end
|
|
|
|
private
|
|
|
|
def authorize_admin
|
|
authorize :admin, :show?
|
|
end
|
|
end
|
|
end
|