clarion/app/controllers/lectures_controller.rb
2014-08-10 23:50:44 +03:00

19 lines
190 B
Ruby

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