aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/asset_paths.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/abstract_controller/asset_paths.rb')
-rw-r--r--actionpack/lib/abstract_controller/asset_paths.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/asset_paths.rb b/actionpack/lib/abstract_controller/asset_paths.rb
new file mode 100644
index 0000000000..d6ee84b87b
--- /dev/null
+++ b/actionpack/lib/abstract_controller/asset_paths.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+module AbstractController
+ module AssetPaths #:nodoc:
+ extend ActiveSupport::Concern
+
+ included do
+ config_accessor :asset_host, :assets_dir, :javascripts_dir,
+ :stylesheets_dir, :default_asset_host_protocol, :relative_url_root
+ end
+ end
+end