debian-mirror-gitlab/app/controllers/groups/boards_controller.rb

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

40 lines
952 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
class Groups::BoardsController < Groups::ApplicationController
2019-07-07 11:18:12 +05:30
include BoardsActions
2019-03-02 22:35:43 +05:30
include RecordUserLastActivity
2021-03-11 19:13:27 +05:30
include Gitlab::Utils::StrongMemoize
2018-03-27 19:54:05 +05:30
2019-12-21 20:55:43 +05:30
before_action do
2022-07-16 23:28:13 +05:30
push_frontend_feature_flag(:board_multi_select, group)
push_frontend_feature_flag(:realtime_labels, group)
2021-12-11 22:18:48 +05:30
experiment(:prominent_create_board_btn, subject: current_user) do |e|
2022-08-27 11:52:29 +05:30
e.control {}
e.candidate {}
2021-12-11 22:18:48 +05:30
end.run
2019-12-21 20:55:43 +05:30
end
2018-03-27 19:54:05 +05:30
2021-12-11 22:18:48 +05:30
feature_category :team_planning
2022-07-16 23:28:13 +05:30
urgency :low
2021-01-03 14:25:43 +05:30
2018-11-08 19:23:39 +05:30
private
2021-03-11 19:13:27 +05:30
def board_finder
strong_memoize :board_finder do
2021-04-17 20:07:23 +05:30
Boards::BoardsFinder.new(parent, current_user, board_id: params[:id])
2021-03-11 19:13:27 +05:30
end
end
def board_create_service
strong_memoize :board_create_service do
Boards::CreateService.new(parent, current_user)
end
end
2020-03-13 15:44:24 +05:30
def authorize_read_board!
2021-04-17 20:07:23 +05:30
access_denied! unless can?(current_user, :read_issue_board, group)
2020-03-13 15:44:24 +05:30
end
2018-03-27 19:54:05 +05:30
end
2022-06-21 17:19:12 +05:30
Groups::BoardsController.prepend_mod