Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_presenter.rb « presenters « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75f6d749acb014d2446a2800ade35c94199e1db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

class IssuePresenter < Gitlab::View::Presenter::Delegated
  presents ::Issue, as: :issue

  def issue_path
    return url_builder.build(issue, only_path: true) unless use_work_items_path?

    project_work_items_path(issue.project, work_items_path: issue.id)
  end

  delegator_override :subscribed?
  def subscribed?
    issue.subscribed?(current_user, issue.project)
  end

  def project_emails_disabled?
    issue.project.emails_disabled?
  end

  def web_url
    return super unless use_work_items_path?

    project_work_items_url(issue.project, work_items_path: issue.id)
  end

  private

  def use_work_items_path?
    issue.issue_type == 'task' && issue.project.work_items_feature_flag_enabled?
  end
end

IssuePresenter.prepend_mod_with('IssuePresenter')