19 lines
190 B
Ruby
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
|