Add communities and topics

This commit is contained in:
taitus
2017-08-07 12:51:49 +02:00
parent ee3b3f2c85
commit 43c17c3fc7
20 changed files with 210 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
class CommunitiesController < ApplicationController
before_action :set_community, :load_topics, only: :show
skip_authorization_check
def show
end
private
def set_community
@community = Community.find(params[:id])
end
def load_topics
@topics = @community.topics
end
end