Joshua Muheim
2006-Jan-11 22:12 UTC
[Rails] before_filter: how to give :except more than 1 value?
Hi all
I have the following class:
class MemberController < ApplicationController
before_filter :authorize, :except => :index
def index
...
end
Now I want to give the before_filter more than one :except argument. I
tried :except => {:index, :login}, but this didn''t work.
How can i accomplish this?
Thanks a lot and have a nice day,
Josh
--
Posted via http://www.ruby-forum.com/.
Maiha
2006-Jan-11 22:17 UTC
[Rails] Re: before_filter: how to give :except more than 1 value?
try array. before_filter :authorize, :except =>[:index, :except] -- Posted via http://www.ruby-forum.com/.
Try putting it in an array rather than a hash, e.g. before_filter :authorize, :except => [:index, :login] See under ''Filter Conditions'': http://api.rubyonrails.com/classes/ActionController/Filters/ClassMethods.html#M000127 csn --- Joshua Muheim <forum@josh.ch> wrote:> Hi all > > I have the following class: > > class MemberController < ApplicationController > before_filter :authorize, :except => :index > > def index > ... > end > > Now I want to give the before_filter more than one > :except argument. I > tried :except => {:index, :login}, but this didn''t > work. > > How can i accomplish this? > > Thanks a lot and have a nice day, > Josh > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >__________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
Joshua Muheim
2006-Jan-11 22:19 UTC
[Rails] Re: before_filter: how to give :except more than 1 value?
Maiha wrote:> try array. > before_filter :authorize, :except =>[:index, :except]Thank you. Is %w{ index, login } OK, too? -- Posted via http://www.ruby-forum.com/.
Joshua Muheim
2006-Jan-11 22:45 UTC
[Rails] Re: before_filter: how to give :except more than 1 value?
Thanks a lot.
But what exactly creates the array now and what the hash?
%w{} should create an array, right?
--
Posted via http://www.ruby-forum.com/.
Damon Clinkscales
2006-Jan-11 22:51 UTC
[Rails] Re: before_filter: how to give :except more than 1 value?
Joshua Muheim <forum@...> writes:> before_filter :authorize, :except => :indexbefore_filter :authorize, :except => [:index, :login] -damon http://damonclinkscales.com/
Dudley Flanders
2006-Jan-15 20:50 UTC
[Rails] Re: before_filter: how to give :except more than 1 value?
On Jan 11, 2006, at 4:45 PM, Joshua Muheim wrote:> Thanks a lot. > > But what exactly creates the array now and what the hash?The bare curlies create a hash, braces create an array.> %w{} should create an array, right?%w{index login} will also create an array, but be careful not to do %w{index, login} with the comma because then the comma becomes part of the first array element. e.g. irb(main):001:0> a1 = [''index'',''login''] => ["index", "login"] irb(main):002:0> a2 = %w{index login} => ["index", "login"] irb(main):003:0> a3 = %w{index, login} => ["index,", "login"] -dudley
Jules
2006-Jan-15 20:56 UTC
[Rails] Re: Re: before_filter: how to give :except more than 1 value
And note that:
%w{index login}
creates this array:
[''index'', ''login'']
and this:
[:index, :login]
creates an array of symbols rather than an array of strings.
That should not be a problem, however, because send() accepts strings
too.
--
Posted via http://www.ruby-forum.com/.