23 lines
202 B
Ruby
23 lines
202 B
Ruby
class ForumTopicsController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def create
|
|
end
|
|
|
|
def update
|
|
end
|
|
|
|
def destroy
|
|
end
|
|
end
|