Add paginate to topics

This commit is contained in:
taitus
2017-08-07 18:20:57 +02:00
parent b4cdca215d
commit 1dc3cd4bb3
2 changed files with 3 additions and 2 deletions

View File

@@ -14,6 +14,6 @@ class CommunitiesController < ApplicationController
end
def load_topics
@topics = @community.topics
@topics = @community.topics.page(params[:page])
end
end