diff options
author | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2011-01-15 17:54:02 +0100 |
---|---|---|
committer | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2011-01-15 17:54:02 +0100 |
commit | 1a051259b426d624e846f76c3fc6011693603e55 (patch) | |
tree | 628be8755c7811075b95d3b080e855ec966f43a3 /activemodel | |
parent | b31ef7ee83f3fe808f7534172ce2bf22ef6c7cc0 (diff) | |
download | rails-1a051259b426d624e846f76c3fc6011693603e55.tar.gz rails-1a051259b426d624e846f76c3fc6011693603e55.tar.bz2 rails-1a051259b426d624e846f76c3fc6011693603e55.zip |
Properly indent code example block
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/mass_assignment_security.rb | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/activemodel/lib/active_model/mass_assignment_security.rb b/activemodel/lib/active_model/mass_assignment_security.rb index 66cd9fdde6..97e31d4243 100644 --- a/activemodel/lib/active_model/mass_assignment_security.rb +++ b/activemodel/lib/active_model/mass_assignment_security.rb @@ -20,32 +20,32 @@ module ActiveModel # For example, a logged in user may need to assign additional attributes depending # on their role: # - # class AccountsController < ApplicationController - # include ActiveModel::MassAssignmentSecurity + # class AccountsController < ApplicationController + # include ActiveModel::MassAssignmentSecurity # - # attr_accessible :first_name, :last_name + # attr_accessible :first_name, :last_name # - # def self.admin_accessible_attributes - # accessible_attributes + [ :plan_id ] - # end + # def self.admin_accessible_attributes + # accessible_attributes + [ :plan_id ] + # end # - # def update - # ... - # @account.update_attributes(account_params) - # ... - # end + # def update + # ... + # @account.update_attributes(account_params) + # ... + # end # - # protected + # protected # - # def account_params - # sanitize_for_mass_assignment(params[:account]) - # end + # def account_params + # sanitize_for_mass_assignment(params[:account]) + # end # - # def mass_assignment_authorizer - # admin ? admin_accessible_attributes : super - # end + # def mass_assignment_authorizer + # admin ? admin_accessible_attributes : super + # end # - # end + # end # module ClassMethods # Attributes named in this macro are protected from mass-assignment |