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: 28760c3f84b331f9ca06102428913baf5660afd4 (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])
  end
end