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

10 lines
210 B
Ruby

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