Displaying 1 result from an estimated 1 matches for "this_auth".
2006 Dec 11
0
auth_generator 2.0.1 undefined method `login_required' for ... ArticlesController
...Controller < ActionController::Base
include AuthSystem
helper :auth
before_filter :app_config, :ident
service :notification
# Used to be able to leave out the action
def process(request, response)
catch(:abort) do
super(request, response)
end
response
end
def this_auth
@app
end
helper_method :this_auth
end
------------------------------------------------------------------------
Modified the end of my config/routes.rb file to include...
------------------------------------------------------------------------
map.auth ''auth/:action/:id'...