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: d3f0e03306896af042a16341679c62f2c410faf6 (plain)
1
2
3
4
5
6
class Explore::SnippetsController < Explore::ApplicationController
  def index
    @snippets = SnippetsFinder.new(current_user).execute
    @snippets = @snippets.page(params[:page])
  end
end