attr-accesible creates a white-list of editable attributes
1
vote
1answer
20 views
Devise not working with Rails 4.0rc1
Is there a way to get Devise to work with Rails 4.0rc1? I get the following error when trying to start the rails server or even to generate the Devise views:
...
1
vote
0answers
18 views
Using the ActiveAdmin Submit button in relation to attr_accessible
I'm currently changing around how my ActiveAdmin interface works so that it integrates both attr_accessible items and CanCan. In some of my models I have a specific controller action for the Submit ...
0
votes
0answers
10 views
Specify attribute list in attr_accessor with method call
I want to create large number of attributes which can be done with ease if constructed with method call like this,
attr_accessor :attr_list
def attr_list
[:x1, :y1, :x2, :y2]
end
This is ...
0
votes
0answers
23 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 < ...
1
vote
2answers
24 views
Issue and clarification needed with attr_accessible
There is so much written about the security threat of attr_accessible that I am beginning to wonder if I should even have any attributes in it. Here is the issue. I have a Message model which has the ...
0
votes
1answer
38 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,
...
0
votes
0answers
46 views
Rails newbie - Model.find breaking without attr_acessible
I created a new class
class MyObject < ActiveRecord::Base
end
which corresponds to a table with just two columns, id (PK) and name.
I expected to be able to do MyObject.find(id), but it breaks ...
1
vote
0answers
30 views
Access a column only with a particular method in rails 3
Suppose I have a model User with two attributes: :name and :age. I want the :age column to be accessible only to "def manipulate_age()"(some method). This also includes, user.update_attributes!(:age ...
0
votes
1answer
114 views
Can't mass-assign protected attributes: even if attr_accessible already added
Can't mass assign :title, :url and :about even if attr_accessible attributes already added. It's fine on rails console but not on online form.
Post Model:
class Post < ActiveRecord::Base
...
0
votes
1answer
122 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
77 views
Applying attr_accessible to all fields for a given role
I am looking for a way to easily apply attr_accessible to all fields in a model for a given role, so that I can mass assign all fields in my admin console. I'd like to do something like this:
...
2
votes
0answers
134 views
Rails: boolean attr_accessible default method behavior
I have a normal class (Event) where a boolean value is defined as
attr_accessible :archived
and in the db schema is
t.boolean "archived", :default => false
As ...
1
vote
2answers
57 views
In Rails, how do I limit which attributes can be updated, without preventing them from being created?
I have a situation where an attribute can be created through a JSON API. But once it is created, I want to prevent it from ever being updated.
This constraint causes my first solution, which is ...
0
votes
1answer
189 views
Rails nested form model creation fails silently using cocoon
I am using Mongoid 2.4.12 and Rails 3.2.8 with cocoon. My nested form appears to work flawlessly on the front end, but the nested model and relation are not being saved.
Project
include ...
0
votes
1answer
226 views
Solution to “Can't mass-assign protected attributes” by adding the foreing key to attr_accessible
I need to create a CRUD that allow create and update projects and one of the attributes is the client that owns the project. When the project is created or edited, the client is selected using a ...
2
votes
2answers
50 views
Confusion with attr_accessible and signup forms
For a Rails project I'm working on, most of the information in a user's model is meant to be confidential, such as a two factor auth phone number.
I've only whitelisted the basics in the model, ...
2
votes
1answer
155 views
attr_accessible, attr_accessor, I would like to know what they do
I'm doing my first steps in Rails and in object-oriented programming.
There is something quite fudemental that I would like to understand: why do we need attr_accessible within the model?
I have read ...
0
votes
1answer
39 views
Rails Attribute Not Showing / Saving as Blank
The attribute, balanced_card_uri, is saving as blank and not showing on this raise:
https://img.skitch.com/20120916-fpmxabwg6m4ys3y84rkti615iq.jpg
Here's the code from customer.rb: ...
0
votes
0answers
55 views
Heroku db responding diff than my local db and flagging WARNING: Can't mass-assign protected attributes
I'm working on a Rails app and feeling stuck on this one after a few hours trying to get through it, would love some help. I'm running sqlite on my local server and Postgres on Heroku. I think this ...
0
votes
1answer
67 views
why am I getting a mass assignment error when my column is on my attr_accessible list
There are several related questions to this one. But none of the answers address my situation.
I am getting this error on my localhost when trying to create a new policy.
Can't mass-assign ...
0
votes
1answer
33 views
How can I specifiy attr_accessible for a nested attributes?
From the docs, I see that if I have a model:
User has_many Addresses
that I can do this:
class User < AR::Base
attr_accessible :addresses_attributes
accepts_nested_attributes_for ...
2
votes
2answers
210 views
RSpec tests failing with 'unknown attribute'
I'm testing for attribute response in my model:
it { should respond_to(:password) }
it { should respond_to(:password_confirmation) }
These attributes aren't part of the database but simply declared ...
3
votes
1answer
343 views
rails attr_accessible rspec check
When I want to test if attribute is / is not accessible with RSpec I'm doing it like this
class Foo
attr_accesible :something_else
end
describe Foo do
it('author should not be accessible') ...
0
votes
0answers
178 views
Nested attribute doesn't show up attr_accessible
I have a nested attribute message.rb
class Message < ActiveRecord::Base
belongs_to :trip
attr_accessible :name, :email, :subject, :body
end
Which belongs trip.rb
class Trip < ...
0
votes
2answers
41 views
What things do I need to know when creating model from another controller and mass-assignment
I have a model called DefaultCompany that has no controller, instead I create it through the companies_controller which calls the user.set_default_company (defined below) if they check the "default ...
-1
votes
1answer
78 views
Mass assignment and roles in Rails
I have Users, Roles, and Network models in Rails 3. Users and Networks have a HMT relationship through Roles. If a User has an Role type of 'admin' with a specific Network, he/she can change the Role ...
1
vote
1answer
348 views
Rails SRP Modules, attr_accessible
I'm learning SOLID and trying to introduce SRP into my rails app. I have the following user model with basic authentication:
class User < ActiveRecord::Base
attr_accessible :password, ...
0
votes
1answer
107 views
Restrict attr_accessible to types of user with Ruby on Rails
I am creating a forum software. I want admins and mods to be able to close certain topics.
Codes are sanitized to show only relevant info.
Models
class User < ActiveRecord::Base
...
0
votes
1answer
214 views
Rails attr_accessible only for seed.rb?
I'm teaching myself Rails through PragProg's (apparently outdated - I'm using Rails 3.2.3) Rails for PHP Developers. I've discovered this seeds.rb file that the book doesn't talk about. I've tried to ...
1
vote
1answer
37 views
How to create a model attached to two users? Without interfering with attr_accessible
I am making a game, and have a Game model and a User model.
The Game model looks like the following:
class Game < ActiveRecord::Base
belongs_to :first_user, :class_name => 'User', ...
0
votes
2answers
396 views
Assignment of a protected attribute in Rails
I have a field on my User model that is protected because it determines clearance level. So it should be left protected and not mass-assignable. So even though attributes are protected by default in ...
0
votes
2answers
208 views
If I put all my db columns in attr_accessible am I safe from a mass assignment attack?
I know that with Rails 3.2 all attributes are 'black-listed' in essence, that forces you to whitelist each attribute via attr_accessible.
However, if I make every column in my table attr_accessible ...
1
vote
1answer
159 views
Virtual attribute is not set before attr_encrypted uses said virtual attribute for encryption key
When encryption_key is called by attr_encrypted, :passphrase hasn't been set. The encryption key ends up being a sha1 hash of the salt; it should be a sha1 hash of the passphrase and salt.
The salt ...
1
vote
1answer
198 views
Rails 3 Tutorial Michael Hartl - Section 9.4.1 Revisiting attr_accessible - malicious PUT requests
I'm a Rails beginner and currently reading Michael Hartl's Rails 3 Tutorial and have a question that I'm really curious about:
In the context of creating an admin user and some other 99 normal users ...
2
votes
1answer
537 views
Mongoid attr_accessible not working
Today morning I wake with this weird issue where mongoid was creating a record for the attributes which isn't being defined in the model
To overcome this i decide to implement attr_accessible also ...
1
vote
1answer
216 views
How to properly pass an array of values to the `attr_accessible` method?
I am using Ruby on Rails v3.2.2 and I would like to handle an array of symbols so to pass its values to the attr_accessible method as well as it should be made. That is, I have:
attr_array = [:one, ...
1
vote
2answers
238 views
Rails: how to update data in migrations when we use attr_accessible?
We have a problem regarding a migration when we try to update some data contained in a table.
Our base model looks like this:
User
username
password
…
We created a first migration to add a ...
0
votes
1answer
824 views
Can't mass-assign protected attributes even if I use attr_accessible
I'm working on a Rails 3.2.2 application which has JSON APIs and I use a
CLI client for inserting some data. It works fine except for the Author
model. When I try to create a new post (Post belongs_to ...
1
vote
1answer
350 views
Passing ID Value to a Controller, Getting Mass Assignment Security Error
I have a message model and a user model. my message belongs_to my user and user has_many messages.
I'm trying to allow a user to private message another user while on their public profile page ...
0
votes
1answer
115 views
Devise invitable's destroy_if_previously_invited fails with no password provided
I'm having a problem on devise + devise_invitable + cancan configuration: if a User registers in a normal way without the invite, the final step of the job described here is not performed:
...
1
vote
2answers
982 views
Ruby on Rails Tutorial( by Hartl) when doing name = Faker::Name.name encoutner Can't mass-assign protected attributes error
UPDATE: I am running on Ruby 1.8. The link to the repository is github.com/lauherk/sample_app
I am going through the Ruby on Rails Tutorial by Micheal hartl, and in chapter 9 I am encountering an ...
3
votes
3answers
340 views
Is there a way to set attr_accessible by default in a rails project with Mongoid?
The recommended solution is this:
config.active_record.whitelist_attributes = true
But this only works if you are using active record. On a mongoid rails project is there a similar approach? It ...
2
votes
2answers
173 views
Is there any tutorial for Rails 3.2 that covers assigning an admin attribute to a user?
Disclaimer: I'm using Rails 3.2. Specifically, in the Rails 3 in Action book:
The User model does have attr_accessible attr_accessible :email, :password, password_confirmation, :remember_me
The ...
8
votes
2answers
893 views
Rails 3.2, Mass Assignment, Dynamic Roles?
I have a Rails app with a user model that contains an admin attribute. It's locked down using attr_accessible. My model looks like this:
attr_accessible :name, :email, :other_email, :plant_id, ...
0
votes
1answer
85 views
How can i get possible attr_accesible attributes in a view?
Since it is possible to define attr_accesible with a role attr_accessible :name, :as => :admin how can i get all attr_accesible attributes in a view for a specific role?
With this information it ...
0
votes
2answers
353 views
User model, attr_accessible and admin
I'm building a simple blog-style application. I really only need admin and non-admin users, so it seems like having a simple column in the user model called admin (boolean) will suffice.
I'm using ...
0
votes
2answers
140 views
Rails: automate creation of attr_accessible with the generator?
I almost always use attr_accessible in my Rails models.
Is there a generator flag or other terminal command to haveattr_accessible and the model fields automatically inserted into the model file ...
7
votes
2answers
2k views
Using Rails 3.1 :as => :admin for updating attributes protected by attr_accessible
After reading about attr_accessible in the Rails 3.1 API, I see that there is an as :admin option in there. I would like to know two things.
If the user has an admin flag, how do does my controller ...
0
votes
1answer
1k views
Rails attr_accessible :as and custom validator
I have model User
class User < ActiveRecord::Base
has_and_belongs_to_many :roles
attr_accessible :login, :email, :password, :password_confirmation ...
attr_accessible :role_ids, ...
4
votes
1answer
996 views
Rails 3.1 attr_accessible verification receives an array of roles
I would like to use rails new dynamic attr_accessible feature. However each of my user has many roles (i am using declarative authorization). So i have the following in my model:
class Student < ...



