Skip to content

Instantly share code, notes, and snippets.

@arvindravi
Created April 28, 2012 07:43
Show Gist options
  • Save arvindravi/2516938 to your computer and use it in GitHub Desktop.
Save arvindravi/2516938 to your computer and use it in GitHub Desktop.
Twit - UsersController
class UsersController < ApplicationController
def new
@user = User.new
end
def create
@user = User.create(params[:user])
redirect '/home'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment