Welcome to mirror list, hosted at ThFree Co, Russian Federation.

snippets_controller.rb « explore « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b70ac51d06e83690eccebe83226c1ca8ffd9326b (plain)
1
2
3
4
5
6
class Explore::SnippetsController < Explore::ApplicationController
  def index
    @snippets = SnippetsFinder.new.execute(current_user, filter: :all)
    @snippets = @snippets.page(params[:page]).per(PER_PAGE)
  end
end