vote up 1 vote down star

Right now I decorate a method like this to allow "members" to access my controller action

[Authorize(Roles="members")]

How do I allow more than one role? For example the following does not work but it shows what I am trying to do (allow "members" and "admin" access):

[Authorize(Roles="members", "admin")]
flag

2 Answers

vote up 0 vote down

Another option is to use a single authorize filter as you posted but remove the inner quotations. [Authorize(Roles="members, admin")]

link|flag
vote up 1 vote down
[Authorize(Roles="members")]
[Authorize(Roles="admin")]

:)

link|flag
oh wow i feel silly now but thank you for the answer :) – codette Mar 31 at 5:56
Sometimes an outsider's perspective is just what you need :) – JoshJordan Mar 31 at 6:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.