Created
November 30, 2012 21:03
-
-
Save leejarvis/4178588 to your computer and use it in GitHub Desktop.
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
class UsersController < W::Controller | |
permit_attributes :name, :email | |
def index | |
@users = User.order('created_at DESC') | |
end | |
def new | |
@user = User.new | |
end | |
def create(attributes) | |
@user = User.new(attributes) | |
end | |
def show(id) | |
@user = User.find(id) | |
end | |
def edit(id) | |
@user = User.find(id) | |
end | |
def update(id, attributes) | |
@user = User.find(id) | |
@user.update_attributes(attributes) | |
end | |
def destroy(id) | |
@user = User.find(id) | |
@user.destroy | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment