mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 00:08:13 +08:00
30990006a9
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
34 lines
641 B
Ruby
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
|