discourse/lib/custom_renderer.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

34 lines
641 B
Ruby

# frozen_string_literal: true
class CustomRenderer < AbstractController::Base
include ActiveSupport::Configurable
include AbstractController::Rendering
include AbstractController::Helpers
include AbstractController::Translation
include AbstractController::AssetPaths
include Rails.application.routes.url_helpers
helper ApplicationHelper
self.view_paths = "app/views"
include CurrentUser
def action_name
""
end
def controller_name
""
end
def cookies
@parent.public_send(:cookies)
end
def session
@parent.public_send(:session)
end
def initialize(parent)
@parent = parent
end
end