Commit a1ec4e43d43b07319fbba9a416cf441fd151f256
1 parent
9507e81f
Exists in
master
and in
29 other branches
rails3: added attributes to attr_accessible of environment
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/models/environment.rb
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | # domains. |
4 | 4 | class Environment < ActiveRecord::Base |
5 | 5 | |
6 | - attr_accessible :name, :is_default, :signup_welcome_text_subject, :signup_welcome_text_body, :terms_of_use, :message_for_disabled_enterprise, :news_amount_by_folder, :default_language, :languages, :description, :organization_approval_method, :enabled_plugins, :enabled_features, :redirection_after_login | |
6 | + attr_accessible :name, :is_default, :signup_welcome_text_subject, :signup_welcome_text_body, :terms_of_use, :message_for_disabled_enterprise, :news_amount_by_folder, :default_language, :languages, :description, :organization_approval_method, :enabled_plugins, :enabled_features, :redirection_after_login, :contact_email, :theme, :reports_lower_bound | |
7 | 7 | |
8 | 8 | has_many :users |
9 | 9 | ... | ... |