clarion/app/controllers/lectures_controller.rb

19 lines
190 B
Ruby
Raw Normal View History

class LecturesController < ApplicationController
def new
@lecture = Lecture.new
end
def create
head :created
end
def edit
end
def update
end
def show
end
end