Sha256: c468d276fbb0525d86ece52c6bad800a1a56538311fdd879eadd0e8e90e8dc77

Contents?: true

Size: 201 Bytes

Versions: 1

Compression:

Stored size: 201 Bytes

Contents

module Forem
  class ForumsController < Forem::ApplicationController
    def index
      @forums = Forem::Forum.all
    end

    def show
      @forum = Forem::Forum.find(params[:id])
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
forem-0.0.1 app/controllers/forem/forums_controler.rb