A feature of server-side web framework such as Ruby on Rails, in which all the parameters of an HTTP request are assigned to variables. Mass assignment security provides an interface for protecting attributes from end-user assignment.
0
votes
0answers
20 views
php-activerecord attr_accessible with roles
Rails 3.1 introduced the concept of mass-assignment "roles". The idea
is that you can specify different attr_protected and attr_accessible
lists for different situations.
class User < ...
0
votes
1answer
28 views
Mass-assigning attributes in ActiveAdmin
I try to create new user using Active Admin and I get:
Can't mass-assign protected attributes: user_id, approved_at_date, approved_at_time_hour, approved_at_time_minute, expire_at_date, ...
0
votes
1answer
58 views
ActiveAdmin: Can't mass-assign protected attributes: email, password, password_confirmation
I am having a Rails with ActiveAdmin with Devise for Authentication. I have AdminUser and User models so that User model doesn't have to care about admin. However, I cannot create/edit neither ...
1
vote
3answers
29 views
Can't mass assign protected attribues
I've read a few of the SO articles on this issue but none of them seem to be working. I'm creating seed data for one of my tables and whenever I run rake db:seed it gives me the error:
Can't ...
0
votes
3answers
41 views
VB function with multiple output - assignment of results
I know there's no straightforward way for multiple assigmnent of function in VB, but there's my solution - is it good, how would you do it better?
What I need (how would I do it in python, just an ...
0
votes
1answer
50 views
ForbiddenAttributesError for polymorphic model in Rails 4
Rails 4 ships with strong_parameters, which is a great addition - but I've run into a problem with it. I have a polymorphic model Comment and I cannot for the life of me get the controller to accept ...
0
votes
1answer
30 views
How to create double nested model with a twist in Rails 3?
I'm creating a registration where I have "Person" "Child" and "Meal" Models. Person can have many Children and can register many Meals for themselves but also many Meals for Children.
The point is ...
0
votes
1answer
36 views
How should I protect mass-assignment in Sinatra app with Datamapper?
I have Link model in Sinatra app
class Link
include DataMapper::Resource
has n, :views
validates_presence_of :url,
message: "You must specify a URL."
validates_length_of :url,
...
1
vote
2answers
35 views
Is it safe to set password field as attr_accessible?
attr_accessible :email, :password, :password_confirmation
If not, can you please give example of method which prevents 'undefined' error when attr_accessible is removed.
0
votes
2answers
32 views
Mass assignment error in nested form in Rails
transaction.rb model:
class Transaction < ActiveRecord::Base
attr_accessible :customer, :tickets_attributes
has_many :tickets
accepts_nested_attributes_for :tickets
end
ticket.rb model:
...
0
votes
1answer
42 views
using build in has_many relationship in create action results in mass assignment error
I have a mass assignment error I can only fix with UGLY code. I must be doing something wrong.
Let me explain:
I my rails application clients have many contacts. The Client page shows a list of ...
0
votes
1answer
63 views
Can't mass-assign protected attributes:: issue while building a nested attribute form
I've spent nearly all day on this particular issue and although there are other posts about it, I've not resolved my particular issue.
I've tried following RailsCast #196 but still can't identify my ...
0
votes
1answer
49 views
rails 3 how to associate a new object without mass-assign error
I came back to the relatively "old book" Head First rails, which was published for Rails 2.3.
Now, going back again through those samples and using Rails 3 I came up with some questions.
Let's say ...
0
votes
1answer
247 views
Laravel 4 - Eloquent mass assignment creates empty records after update
I've just updated L4 (both skeleton and packages) to the latest version.
Now, when I try to create a new instance of one of the Models and save it to the DB, I get an empty record, except for the ...
0
votes
1answer
120 views
Rspec for Devise: Can't mass-assign protected attributes: user_password, user_password_confirmation
I am trying to write a sign up spec for Devise 2.2.2 using RSpec. I prepared the User model as usual.
# app/models/user.rb
class User < ActiveRecord::Base
attr_accessible :role_ids, :as => ...
0
votes
1answer
79 views
How can I work around this mass assignment error? ruby on rails
I'm trying to give a user the ability to create a "Link" relationship between two "Tag" objects.
Tag
class Tag < ActiveRecord::Base
attr_accessible :ref, :location_info
belongs_to :user
...
1
vote
1answer
76 views
Mass-Assignment Error with Nested Attributes
I am having trouble getting the "accepts_nested_attributes_for :people"
to work. The goal is for the user (called "Person" in my app) to be able to establish a family name upon signup. Family is on a ...
1
vote
1answer
69 views
Rails associations has_many :through
I'm getting started with Ruby on Rails and I have encountered an issue with the has_many :through association.
The models I'm using are:
class Phrase < ActiveRecord::Base
attr_accessible ...
1
vote
2answers
34 views
Rails update attribute table col1 with col2
I want to (mass)update a model. Each line of should be updated by replacing the val of attb 1 with the val of attr2
users = User.find_all_by_project_id(params[:project_id])
users.each do |d|
...
0
votes
1answer
45 views
Mass-assignment error on nested attributes
I have an event which can have multiple occurrences (datetimes -- unfortunately, I've misspelled it in code as occurance) which can be dynamically added (thanks to Ryan Bates' awesome tutorial: ...
0
votes
1answer
48 views
is necessary mass assignment protection in a model without controller?
I have a model like this:
class Page < ActiveRecord::Base
attr_accessible :page_id, :name, :page_url, :username
end
and it doesn't have a related controller, but in an other controller I'm ...
0
votes
2answers
80 views
Can't mass-assign protected attributes: shift_type_ids, unit_shift_type
I'm trying to have a single form that creates a Unit in a hospital and you can select shift_types that apply to that Unit in the UnitShiftTypes table. I have has_many and :through UnitShiftTypes ...
0
votes
0answers
119 views
Rails: remove mass assignment exception in tests
I Understand the attr_accessible functionality to restrict mass assigment for other attributes but the desired.
So I had some functional tests created and after put this attr_accessible restriction ...
1
vote
1answer
84 views
Mass assignment error with polymorphic association
I'm getting a mass assignment error when submitting a nested form for a has_one polymorphic model. The form is trying to create Employee and Picture instances based on the polymorphic association ...
0
votes
2answers
59 views
Can't mass-assign protected attributes: email, password
I know that you should use "attr_accessible" to allow mass-assign protection, and that's actually what I do in my user model. How come it still complains?
Can't mass-assign protected attributes: ...
0
votes
2answers
133 views
Using both attr_accessible AND attr_readonly does not allow record creation
attr_accessible marks all non specified attributes as protected, but I need for a few key attributes to still be written on create, as supported by attr_readonly.
I have my model setup like so:
...
-1
votes
2answers
89 views
MVC ViewModel approaches and mapping. Best approach
I've been looking at the different approaches to solving the mass assignment issues with MVC as well as doing things the right way.
So far, the 2 approaches which I think are the best are below: (I ...
0
votes
1answer
120 views
MassAssignment Error when Attribute in attr_accessible
I am getting a ActiveModel::MassAssignmentSecurity::Error: Can't mass-assign protected attributes: title when I have attr_accessible :title in the model. See the code and output of a console call ...
0
votes
1answer
55 views
Rails: Is there an efficient way to get all whitelisted attributes with values?
I'm trying to use a model as a template to create a new model. However, I only want to use the attr_accessible attributes from the template model.
Here's what I'm doing now. It works, but it seems ...
0
votes
1answer
31 views
Creating separate models in single form with accepts_nested_attributes_for (b/t & has_many)
Trying to use nested attributes to create an Organization and a User in one form. I'm getting the following error: Can't mass-assign protected attributes: user ...
0
votes
1answer
116 views
Rails 3.2 Mass Assignment
I'm hoping I can get some help with a mass assignment issue in my recently upgraded Rails 3.2 app.
I understand that in Rails 3.2 attributes are locked down by default and in order for them to be ...
0
votes
1answer
60 views
How do I fix nested fields mass-assign protected attributes error? despite having attr_accessible
I have an Address model which belongs to ParkingCompany or User. each address can belong to more than one user. but each ParkingCompany has one Address.
I get Can't mass-assign protected attributes: ...
1
vote
2answers
81 views
Can't mass assign protected attributes - it's mass assigning fields in attr_accessor
Can't mass-assign protected attributes: password, password_confirmation
Both of those fields are not mapped in the database, they are just fields in the form that I want to use to enable some ...
2
votes
1answer
68 views
Testing scoped mass assignment with RSpec
I have a model with the following mass assignment protection defined as:
attr_accessible :attachment, :body, :feed_id
attr_accessible :attachment, :body, :feed_id, :approved, :as => :admin
The ...
-4
votes
1answer
136 views
Can't mass-assign protected attributes: title, description, cloth_type, pic Rails 3
When doing a POST to /cloth/create I get a WARNING: Can't mass-assign protected attributes: title, description, cloth_type, pic
cloth.rb
class Cloth
include Mongoid::Document
include ...
0
votes
1answer
45 views
Can some explain this weird behavior of Rails mass-assignment and validation
Note : Before Answering the question understand this does not have to do anything with attr_accessible or attr_protected the RAILS is in question is 3.1.3 and Ruby 1.9.2p290
Without futher due Here ...
0
votes
1answer
60 views
Rails attribute_accessible allows mass assignment of attribs in 1 of 2 models with parallel construction. Why?
In a stripped down project to demonstrate the problem
rake test yields:
1) Failure:
test_can_mass_assign_accessible_flds(BrandTest) [ test/unit/brand_test.rb:11]:
Exception raised:
...
0
votes
1answer
56 views
How do I mass assign attributes to model on google appengine / python?
I know I can use constructor to mass assign when creating the class:
attributes = {'name':'John', 'surname':'Smith', ...}
record = Model(**attributes)
but how can I assign the attributes when I ...
4
votes
2answers
185 views
Can't mass-assign protected attributes: profiles,
I read lot of related posts but can't find why it's not working for me. I still have a "can't mass-assign protected attributes: profiles"...
What am I doing wrong ?
I have a User model and a related ...
2
votes
2answers
101 views
Rails, nested attributes, can't mass assign error
I have two models on server:
Feed
class Feed < ActiveRecord::Base
attr_accessible :name
belongs_to :broadcasts
end
Broadcast
class Broadcast < ActiveRecord::Base
...
0
votes
1answer
68 views
How to change protected attribute in rails after form
I think this question is so simple, that I am at a loss for how to google it.
In RoR, if I have a protected attribute like :premium or :admin, and I only want to change it if a User does something ...
1
vote
1answer
299 views
Can't mass-assign protected attributes: asset
I followed the tutorial screencast over here: http://www.emersonlackey.com/article/rails-paperclip-multiple-file-uploads. I want my model have multiple pictures upload show up.
I have examined ...
0
votes
1answer
41 views
Make mass_assignment protection error not silent in Rails 3.2.x?
This is a fairly simple thing, but since Rails 3.2 mass-assignment protection is enabled by default, is there a way to make rails raise an exception in dev or test when you try to set a protected ...
0
votes
1answer
51 views
another mass assignment issue with nested attributes
I have campaigns and messages. Campaigns have many messages and messages belongs to campaigns. I setup nested attributes for the models and in my view and i'm trying to create a message associated ...
2
votes
1answer
139 views
Rails 3.2 strict mass assignment defaults
In a new rails project what is the reason mass assignment is not set to strict in production and the reason that it is set to strict in development and test?
1
vote
1answer
147 views
ActiveRecord transaction does not rollback
I'm new to ActiveRecord transactions. In the code below the first update_attributes causes a WARNING: Can't mass-assign protected attributes: account_type_cdx and that is ok. But I was surprised that ...
0
votes
2answers
356 views
ActiveAdmin role for mass assignment
In my models I have defined different roles for mass assignment. Some fields are attr_accessible :as => :default. Other fields are attr_accessible :as => [:default, :admin].
How can I allow ...
0
votes
1answer
104 views
Can't create virtual attribute for railscast #102 autocomplete
I can't get what I'm doing wrong.
I'm following instuctions from revised railscast #102.
I have model Article:
belongs_to :category
def category_name
category.try(:name)
end
...
0
votes
1answer
187 views
Mass assignment error in polymorphic favourite model setup
I am trying to adding favouriting to my app so that users can select favourite projects.
I have tried to use the code that I found here: ...
1
vote
1answer
228 views
Disable MassAssignmentSecurity
Is there a way of completely disabling the MassAssignmentSecurity feature in Rails3?
We're busy with an upgrade and need to disable it for a while :)
