1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Fix RuboCop offense Rails/RootPublicPath (#37248).

git-svn-id: https://svn.redmine.org/redmine/trunk@21633 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2022-06-14 13:40:46 +00:00
parent 0b2308aa28
commit 637756eef7
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ module Redmine
# Absolute path to the plublic directory where plugins assets are copied
cattr_accessor :public_directory
self.public_directory = Rails.root.join('public/plugin_assets')
self.public_directory = Rails.public_path.join('plugin_assets')
def self.create_assets_reloader
plugin_assets_dirs = {}

View File

@ -26,7 +26,7 @@ module Redmine
help_file = "/help/#{current_language.to_s.downcase}/wiki_syntax_common_mark.html"
# fall back to the english help page if there is none for the current
# language
unless File.readable? Rails.root.join("public", help_file)
unless File.readable? Rails.public_path.join(help_file)
help_file = "/help/en/wiki_syntax_common_mark.html"
end
url = "#{Redmine::Utils.relative_url_root}#{help_file}"