Skip to content

Instantly share code, notes, and snippets.

@vestige
Created April 9, 2012 14:32
Show Gist options
  • Save vestige/2343856 to your computer and use it in GitHub Desktop.
Save vestige/2343856 to your computer and use it in GitHub Desktop.
crete
class ClimbingsController < ApplicationController
def create
@climbing = Climbing.new(params[:climbing])
@climbing.user = current_user
if @climbing.save
redirect_to @climbing
else
render :new
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment