debian-mirror-gitlab/app/controllers/dashboard/snippets_controller.rb

20 lines
502 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-09-25 12:07:36 +05:30
class Dashboard::SnippetsController < Dashboard::ApplicationController
2019-12-04 20:38:33 +05:30
include PaginatedCollection
include Gitlab::NoteableMetadata
2018-03-27 19:54:05 +05:30
skip_cross_project_access_check :index
2015-09-25 12:07:36 +05:30
def index
2019-12-04 20:38:33 +05:30
@snippets = SnippetsFinder.new(current_user, author: current_user, scope: params[:scope])
.execute
.page(params[:page])
.inc_author
return if redirect_out_of_range(@snippets)
@noteable_meta_data = noteable_meta_data(@snippets, 'Snippet')
2015-09-25 12:07:36 +05:30
end
end