Tagged Questions
1
vote
1answer
34 views
Is it possible to stop Rails from rendering views for actions not defined in controllers?
Following this question, I'd like to know if there is a way to override that new rails behaviour. I run into a security issue with a forgotten view, that was suddenly exposed although the action was ...
1
vote
0answers
25 views
Specifying format: “xml” ignored with render_to_string
I have an action that needs to render a view to string. The view is called index.xml.erb. I am trying to achieve this with render_to_string:
my_string = render_to_string(layout: false, format: "xml")
...
1
vote
2answers
597 views
Ruby on rails nested form model
I'm trying to use rails nested form_for helper, but I am getting the following error:
BlogPage(#49859550) expected, got Array(#31117360)
Here are my model objects:
class Blog < ...
1
vote
1answer
796 views
Avoiding repetitive “content_for” in views
I have a submenu placed in my layout wich differs from controller to controller, but not between each controllers method views. What I am currently doing is the following:
<% content_for( :submenu ...
1
vote
5answers
563 views
One controller, different views for normal users and admins
in my application, I have a "User" model. Each user can have multiple (email) addresses which are defined in the model "Address":
Class User < ActiveRecord::Base
has_many :addresses
def ...
0
votes
2answers
41 views
Receiving AbstractController::DoubleRenderError when using authenticate_or_request_with_http_basic()
I have a working controller action that breaks when I add a call to authenticate_or_request_with_http_basic at the beginning of the block. Here is the non-functioning action code:
def index
...
0
votes
1answer
55 views
testing a that Rails controller chooses a layout without rendering the layout
i'd like to stub out render and i'd like to test that a certain layout is chosen
bonus catch: in the test env, that layout file will not exist
is there a clever way to detect if the controller has ...
0
votes
0answers
169 views
Rendering in ApplicationController fails
I am trying to use respond_to in ApplicationController as follows in my application:
class ApplicationController < ActionController::Base
rescue_from ActiveRecord::RecordNotFound do |err|
...
0
votes
1answer
88 views
What is the most Rails'ish way of handling multiple layouts/views for the same controller action?
The scenario is this:
I have some users on my site. A user has a role, the relevant ones here is admin and normal. I also have a model, let's call it SomeModel.
I have created a backend for the ...
0
votes
1answer
60 views
Setting up actions for the ActionController in Rails
I just issued a [ script/generate scaffold User ] command to generate my files. All the CRUD pages work well so that's good and now I'm trying to create more pages. I create a method in the ...