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

12 lines
287 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
class Dashboard::SnippetsController < Dashboard::ApplicationController
def index
2015-12-23 02:04:40 +05:30
@snippets = SnippetsFinder.new.execute(
current_user,
2015-09-25 12:07:36 +05:30
filter: :by_user,
user: current_user,
scope: params[:scope]
)
2016-06-02 11:05:42 +05:30
@snippets = @snippets.page(params[:page])
2015-09-25 12:07:36 +05:30
end
end