2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
class Projects::BoardsController < Projects::ApplicationController
|
2019-09-30 21:07:59 +05:30
|
|
|
include MultipleBoardsActions
|
2016-11-03 12:29:30 +05:30
|
|
|
include IssuableCollections
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
before_action :check_issues_available!
|
|
|
|
before_action :assign_endpoint_vars
|
2019-12-21 20:55:43 +05:30
|
|
|
before_action do
|
2021-04-29 21:17:54 +05:30
|
|
|
push_frontend_feature_flag(:swimlanes_buffered_rendering, project, default_enabled: :yaml)
|
2021-09-30 23:02:18 +05:30
|
|
|
push_frontend_feature_flag(:issue_boards_filtered_search, project, default_enabled: :yaml)
|
2021-09-04 01:27:46 +05:30
|
|
|
push_frontend_feature_flag(:board_multi_select, project, default_enabled: :yaml)
|
|
|
|
push_frontend_feature_flag(:iteration_cadences, project&.group, default_enabled: :yaml)
|
2021-12-11 22:18:48 +05:30
|
|
|
experiment(:prominent_create_board_btn, subject: current_user) do |e|
|
|
|
|
e.use { }
|
|
|
|
e.try { }
|
|
|
|
end.run
|
2019-12-21 20:55:43 +05:30
|
|
|
end
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
feature_category :team_planning
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
private
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
def board_klass
|
|
|
|
Board
|
|
|
|
end
|
|
|
|
|
|
|
|
def boards_finder
|
|
|
|
strong_memoize :boards_finder do
|
2021-04-17 20:07:23 +05:30
|
|
|
Boards::BoardsFinder.new(parent, current_user)
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def assign_endpoint_vars
|
|
|
|
@boards_endpoint = project_boards_path(project)
|
|
|
|
@bulk_issues_path = bulk_update_project_issues_path(project)
|
|
|
|
@namespace_path = project.namespace.full_path
|
|
|
|
@labels_endpoint = project_labels_path(project)
|
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
def authorize_read_board!
|
2021-04-17 20:07:23 +05:30
|
|
|
access_denied! unless can?(current_user, :read_issue_board, project)
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|