I'm trying to call a custom instance of a 403 HTTP error in Rails but I can't seem to figure out how to do this...

I have several user authentication roles and basically if a role tries to browse to an area that it is not authorised to visit I want to display a 403 instead of just redirecting the user.

How do I do this?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

In your controller code add the following line:

render :status => :forbidden, :text => "Forbidden fruit"

Refer to this page for http code to symbol mapping.

link|improve this answer
Fantastic! Thanks heaps... FYI you're missing a comma after :forbidden – Ganesh Shankar Mar 7 '10 at 3:41
Thanks I have updated the answer and added a reference to http code to ruby symbol list. – KandadaBoggu Mar 7 '10 at 3:52
thanks! was about to ask something just like this – Kevin Davis Apr 12 '11 at 9:18
feedback

Your Answer

 
or
required, but never shown

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