sillyforum/app/controllers/forum_topics_controller.rb
2026-03-17 12:49:38 +00:00

18 lines
391 B
Ruby

class ForumTopicsController < ApplicationController
def show
id = params.extract_value(:id)
@thread = ForumThread.find_by_id(id)
end
def index
@threads = ForumThread.all
end
def show
id = params.extract_value(:id)
@forum_topics = ForumTopic.find_by_id(id)
@threads = ForumThread.all
@thread = ForumThread.find_by_id(id)
end
end