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
1answer
29 views
SOLVED: Mass-assignement error in fields_for form using Devise user with multiple roles
I looked on plenty of issues related to mass-assignement in nested attributes but none of them helped me out...
I am using Devise and have one User model with different types, as the Client one:
...
1
vote
1answer
16 views
Mass assignment error using acts_as_commentable_with_threading
I've been following this tutorial to implement threaded comments with the acts_as_commentable_with_threading gem. However, I seem to be running into a mass assignment error that seems to stem from the ...
0
votes
1answer
58 views
Laravel mass assignment won't fill fields
I have a model that doesn't seem to be mass assignable, even though I have filled in the $fillable fields:
<?php
class LoginAttempt extends Eloquent
{
protected $table = 'login_history';
...
1
vote
2answers
32 views
Getting “Can't mass-assign protected attributes:” for nested_attributes
I am on Rails3, I have two model, User, and Post. User has Posts as nested attributes. when I try to save user then I am getting Can't mass-assign protected attributes:.....
0
votes
2answers
36 views
Mass Assignment Error using Wicked Wizard with Multiple Models
I am using the Wicked gem to help create a wizard registration form. When I attempt to submit the form for my Camper model I keep receiving a mass assignment error although I feel as if I am using ...
0
votes
1answer
15 views
ActiveModel::MassAssignmentSecurity::Error (backbone.js + rails + rails-backbone gem)
I am trying to continue along the path I was lead down in this post: render show page on submit backbone.js + rails + rails-backbone gem
I am still trying to figure out what I describe in the first ...
2
votes
2answers
106 views
Can't mass-assign protected attributes for creating a has_many nested model with Devise
I've watched the RailsCast, another nested attributes video, lots of SO posts, and fought with this for a while, but I still can't figure it out. I hope it's something tiny.
I have two models, User ...
1
vote
0answers
43 views
No Mass assignment with attr_accessible set in model Rails 3.2.2
I have am creating a twitter style following relationship between users in my Rails 3.2.2 application. I have User and Relationship models.
class Relationship < ActiveRecord::Base
belongs_to ...
0
votes
1answer
39 views
Mass Assignment Rails 4
What would I need to do to update the make_voteable gem for rails 4?
In Rails 4, attr_accessible has been removed (with strong_parameters) in it's place. I cannot find what/where to place to code to ...
0
votes
0answers
30 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
46 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, ...
1
vote
1answer
143 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
39 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
63 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
178 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
36 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
58 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
46 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
45 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
49 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
89 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
62 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
449 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
182 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
85 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
88 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
79 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
40 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
51 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
50 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
92 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
141 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
104 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
63 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
175 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
102 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
146 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
70 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
36 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
141 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
70 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
98 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
89 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
177 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
56 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
68 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
59 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
214 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
107 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
83 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 ...

