0
votes
2answers
111 views
RSpec in Rails: How to skip a before_filter?
Hello everyone,
I am trying to test my controller and maintain separation of concerns.
The first concern is "Who is able to execute which action?"
I am using authlogic for authentication and be9's …
0
votes
4answers
102 views
should I limit attempts to login rails?
I'm thinking about building a login system for Ruby on Rails, much like this one
http://visionmasterdesigns.com/tutorial-create-a-login-system-in-ruby-on-rails/
In terms of security, should I limit …
1
vote
4answers
172 views
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false?
I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates.
Sometimes I return false from the filter to prevent the creation of …
2
votes
2answers
87 views
rails: put and interruption in before filter
I want a before filter like "must_have_permission_to_write" that when called if user hasn't permission to write renders a message saying "you can't do that!" and return.
Problem is I'm getting "can …
1
vote
4answers
120 views
before_filter with dynamic information
Hi
I am trying to add a filter to a controller that is based on a certain role (using role_requirement) and then on the company_id that each user has.
So basically I need something like this:
…
1
vote
2answers
263 views
in Rails : Retreive user input from a form that isn’t associated with a Model, use the result within the controller.
Here's a simplified version of what I'm trying to do :
Before any other actions are performed, present the user with a form to retrieve a string.
Input the string, and then redirect to the default …
