Skip to content

Instantly share code, notes, and snippets.

@Omer
Created February 11, 2010 23:37
Show Gist options
  • Save Omer/302127 to your computer and use it in GitHub Desktop.
Save Omer/302127 to your computer and use it in GitHub Desktop.
class AssignmentsController < ApplicationController
def show
@assignment = Assignment.find(params[:id])
end
def new
end
def index
@assignments = Assignment.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment