Created
May 23, 2017 18:06
-
-
Save jessewaites/fa56eb3fd9d576f0f1211b2098952b99 to your computer and use it in GitHub Desktop.
rails debugging for dummies
This file contains 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 create | |
if @thing.save | |
redirect_to thing_form_path(@thing), notice: "You saved the thing!" | |
else | |
flash[:error] = @thing.errors.full_messages.to_sentence | |
render :new | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment