debian-mirror-gitlab/app/controllers/projects/starrers_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
610 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
class Projects::StarrersController < Projects::ApplicationController
include SortingHelper
2021-01-03 14:25:43 +05:30
feature_category :projects
2022-07-16 23:28:13 +05:30
urgency :low, [:index]
2019-10-12 21:52:04 +05:30
def index
@starrers = UsersStarProjectsFinder.new(@project, params, current_user: @current_user).execute
2019-12-04 20:38:33 +05:30
@sort = params[:sort].presence || sort_value_name
@starrers = @starrers.preload_users.sort_by_attribute(@sort).page(params[:page])
2023-01-13 00:05:48 +05:30
@public_count = @project.starrers.active.with_public_profile.size
@total_count = @project.starrers.active.size
2019-10-12 21:52:04 +05:30
@private_count = @total_count - @public_count
end
end