Class: Forem::TopicsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/forem/topics_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



13
14
15
16
17
18
# File 'app/controllers/forem/topics_controller.rb', line 13

def create
  params[:topic].merge!(:user => current_user)
  @topic = Forem::Topic.create(params[:topic])
  flash[:notice] = "Topic has been created!"
  redirect_to @topic
end

#indexObject



4
5
6
# File 'app/controllers/forem/topics_controller.rb', line 4

def index
  @topics = Forem::Topic.all
end

#newObject



8
9
10
11
# File 'app/controllers/forem/topics_controller.rb', line 8

def new
  @topic = Forem::Topic.new
  @topic.posts.build
end

#showObject



20
21
22
# File 'app/controllers/forem/topics_controller.rb', line 20

def show
  @topic = Forem::Topic.find(params[:id])
end