The applicationcontroller tag has no wiki summary.
0
votes
2answers
49 views
Limit create action to 1 post per user
I want to make user to have only one matriculation per user. However I get error "undefined method `matriculations' for nil:NilClass". How could I make it work? (I use devise as user auth if its ...
0
votes
0answers
17 views
Issue in application_controller on integrating Declarative Authorization
I have integrated declarative authorization in my rails app. My application controller looks like below.
class ApplicationController < ActionController::Base
protect_from_forgery
...
0
votes
0answers
30 views
Why is my Application instance variable always blank?
I'm trying to declare a global instance variable in my ApplicationController, to be able to access it from every views...
The following code is working BUT, it execute the query for every page ...
1
vote
1answer
63 views
application_controller.rb or new?
I'm new to Ruby on Rails, learning it to create a new SaaS I'm working on. Whilst I'm able to write some RoR, I don't know the majority of conventions for the language.
My question is, for the front ...
1
vote
2answers
153 views
'protect_from_forgery' in Application controller in Rails 3.2.9
See, I could find the below given code in the 'config/application_controller.rb' file in my Rails application directory.
class ApplicationController < ActionController::Base
protect_from_forgery
...
0
votes
1answer
80 views
Creating a Web based Ruby program using RubyMine
I'm writing a web based Ruby program using the IDE RubyMine.
I have a couple of classses:
application_controller.rb:
class application_controller < ActionController::Base
# To change this ...
0
votes
1answer
127 views
Ruby on rails before_filter function not executing
So there's a bit of code that I want to execute on every request that is made to my rails application and found through googling that I can do it using before_filter. Buy it doesn't seem to run when I ...
0
votes
1answer
149 views
uninitialized constant ApplicationController::Mailer
When I run my rails application in development mode it runs fine. When I run it in production mode, it doesn't start. Instead it gives me: uninitialized constant ApplicationController::Mailer. This ...
2
votes
1answer
59 views
Rails: side effect of including the same filter twice
I have a gem I'm developing that is based around using filters on ApplicationController. It's basically for logging, and one of the modules defines an around filter like so:
module LogExceptionFilter
...
2
votes
2answers
1k views
How can I extend ApplicationController in a gem?
I thought I'd come up with a slick way to extend ApplicationController in a Rails 3.x gem.
In my gem's lib/my_namespace/my_controller.rb, I had:
class MyNamespace::MyController < ...
0
votes
2answers
308 views
How to call the ApplicationController helper method in model? RoR
Guys I've a helper method in ApplicationController as follows
class ApplicationController < ActionController::Base
helper_method :current_user
end
And I want to call it in my model (say ...
2
votes
2answers
140 views
Rails - how to run method only first time, when user come to my page
I have lots of data in database and I wanna make a statistics from them. Lots of data = thousands rows in table, and I wanna get the daily, weekly, monthly (for every month) stats... just detailed ...
0
votes
1answer
248 views
toplevel constant ApplicationController referenced by Children::ApplicationController
I am merging two applications school and children. Each working fine With children application nested in school application. Each of them have its own Database.
Here is part of the tree for school ...
0
votes
1answer
133 views
ApplicationController Functionality
I have an app with guest user functionality in it. I'm trying to understand how my applicationcontroller guest_user methods are being called. I thought I would need a before_filter in the ...
0
votes
1answer
1k views
Rails: In Application Controller, force login, redirect all requests except login
I'd like a simple method in my application controller that requires all users to log in before continuing to any part of the site. I'm using Devise for authentication.
I tried:
class ...
0
votes
1answer
162 views
where to rescue network connection error: in model or controller?
I have a model that requires accessing an external web site before an instance of the model can be created. What is considered best practices for error recovery? Note that since I haven't created ...
0
votes
1answer
330 views
Rails: access resource model from ApplicationController
So, I've the following method in the ApplicationController, which is need to be accessed by all controllers:
def alter_some_attribute
@recurso = resource.find(params[:id])
...
end
This ...
3
votes
2answers
1k views
How to set cookies in ApplicationController?
Need to set cookies in ApplicationController... but dont know how... using cookies - nothing, using ActionController::Cookies - nothing.
Nothing more then setting|getting cookies I dont need, but what ...
0
votes
0answers
121 views
Strange rails 3 application behaviour
I have the following code in my application controller
config = Configuration.first
admin_user = User.where(:admin => true)
def has_admin
admin_user.eql? nil
end
def ...
3
votes
2answers
427 views
DRY-ing ASP.NET MVC actions: ApplicationController or Service?
I'm writing an ASP.NET MVC 3 app and I'm finding myself writing this line rather often in my action methods:
var user = _session.Single<User>(u => u.UserName == User.Identity.Name);
...
2
votes
3answers
2k views
How do you route an action to the application controller in Rails 3?
I am using the gem rails3-jquery-autocomplete and had no problems with it, however I have now moved my autocomplete form into the application template and therefore the ajax calls are now being dealt ...
0
votes
2answers
980 views
How to call a function in app_controller in my elements
I am developing a website; which the users can add cars and mobiles with an one registration account. However, I have on the right and on the left boxes for the top hits (cars,mobiles), and in the ...
0
votes
1answer
212 views
ApplicationController methods in Rails 2.0.2 not overriding plugin methods using Engines
I am trying to use the Savage Beast 2 plugin in my project. This plugin requires the use of Engines plugin. My project is on Rails 2.0.2.
There are some methods in
...
5
votes
2answers
2k views
Rails 3.0 Engine - Execute code in ActionController
I am upgrading my Rails plugin to be an engine that works with the latest 3.0RC1 release and I'm having a bit of trouble figuring out the best (and most correct) way to extend ActionController. I've ...
2
votes
1answer
844 views
How to override a render to create a custom “render :my_format => argument” in rails 2.3(.5)?
I would like to create a custom render as specified in title.
For instance, I have my controller:
class MyController < ApplicationController
def index
respond_to do |format|
...
18
votes
9answers
22k views
“undefined method” when calling helper method from controller in Rails
Does anyone know why I get
undefined method `my_method' for #<MyController:0x1043a7410>
when I call my_method("string") from within my ApplicationController subclass? My controller looks like
...
1
vote
1answer
2k views
Why can't rails3 find ApplicationController when it is in my application
In a Rails3 Application I keep getting
..gems/activesupport-3.0.0.beta/lib/active_support/dependencies.rb:459:in 'load_missing_constant': uninitialized constant ApplicationController (NameError)
...

