Created
March 7, 2012 18:27
-
-
Save jraczak/1994948 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
class ProjectsController < ApplicationController | |
# GET /projects | |
# GET /projects.json | |
def index | |
@projects = Project.all | |
respond_to do |format| | |
format.html # index.html.erb | |
format.json { render :json => @projects } | |
end | |
end | |
# GET /projects/1 | |
# GET /projects/1.json | |
def show | |
@project = Project.find(params[:id]) | |
respond_to do |format| | |
format.html # show.html.erb | |
format.json { render :json => @project } | |
end | |
end | |
# GET /projects/new | |
# GET /projects/new.json | |
def new | |
@project = Project.new | |
respond_to do |format| | |
format.html # new.html.erb | |
format.json { render :json => @project } | |
end | |
end | |
# GET /projects/1/edit | |
def edit | |
@project = current_user.projects.find(params[:id]) | |
end | |
# POST /projects | |
# POST /projects.json | |
def create | |
@project = current_user.projects.new(params[:project]) | |
respond_to do |format| | |
if @project.save | |
format.html { redirect_to @project, :notice => 'Project was successfully created.' } | |
format.json { render :json => @project, :status => :created, :location => @project } | |
else | |
format.html { render :action => "new" } | |
format.json { render :json => @project.errors, :status => :unprocessable_entity } | |
end | |
end | |
end | |
# PUT /projects/1 | |
# PUT /projects/1.json | |
def update | |
@project = current_user.projects.find(params[:id]) | |
respond_to do |format| | |
if @project.update_attributes(params[:project]) | |
format.html { redirect_to @project, :notice => 'Project was successfully updated.' } | |
format.json { head :no_content } | |
else | |
format.html { render :action => "edit" } | |
format.json { render :json => @project.errors, :status => :unprocessable_entity } | |
end | |
end | |
end | |
# DELETE /projects/1 | |
# DELETE /projects/1.json | |
def destroy | |
@project = current_user.projects.find(params[:id]) | |
@project.destroy | |
respond_to do |format| | |
format.html { redirect_to projects_url } | |
format.json { head :no_content } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment