Created
March 14, 2011 02:06
-
-
Save linusthe3rd/868658 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def get_camp | |
| @camp = Camp.find_by_uri(params[:camp_id]) | |
| if !@camp | |
| #call parent 404 method because no record was found | |
| #ActiveRecord::RecordNotFound is not being called | |
| self.render_400 | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment