Created
June 20, 2014 13:34
-
-
Save pupca/478365a131aba6690022 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
| respond_to do |format| | |
| if @subscription.save | |
| format.html { redirect_to new_project_path, notice: 'Subscription was successfully created.' } | |
| format.json { render action: 'show', status: :created, location: @subscription } | |
| else | |
| format.html { render action: 'new' } | |
| format.json { render json: @subscription.errors, status: :unprocessable_entity } | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment