summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-24 16:16:57 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-24 16:16:57 +0200
commit61dc69cc5d8089ed9f96bc65dc64de6e075f70cf (patch)
tree2a25126657acc65a010d1f11a2a2208f38bf41a1 /config
parente0a7e0fec760ba12c8067a37e10c96f1f05876e2 (diff)
Upgrade acts-as-taggable-on to 3.5, add Rails 3.2 config fixes
- Bump acts-as-taggable-on from 2.4.1 to 3.5.0 - Fake engine migrations for pre-existing schema - Set serve_static_assets in development - Fix request.fullpath in authenticated_system (request_uri removed in Rails 3.x) - Fix Paperclip path format to match existing file layout
Diffstat (limited to 'config')
-rw-r--r--config/application.rb1
-rw-r--r--config/environments/development.rb1
2 files changed, 2 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb
index 9b7ae67..cb92166 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -56,5 +56,6 @@ module Cccms
56 config.i18n.default_locale = :de 56 config.i18n.default_locale = :de
57 57
58 config.filter_parameters += [:password, :password_confirmation] 58 config.filter_parameters += [:password, :password_confirmation]
59 config.serve_static_assets = true
59 end 60 end
60end 61end
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 6446686..94f216f 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -17,4 +17,5 @@ Cccms::Application.configure do
17 config.action_mailer.raise_delivery_errors = false 17 config.action_mailer.raise_delivery_errors = false
18 18
19 config.active_support.deprecation = :log 19 config.active_support.deprecation = :log
20 config.serve_static_assets = true
20end 21end