2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IssuePresenter < Gitlab::View::Presenter::Delegated
|
2021-11-18 22:05:49 +05:30
|
|
|
presents ::Issue, as: :issue
|
2019-02-15 15:39:39 +05:30
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
def issue_path
|
2022-06-21 17:19:12 +05:30
|
|
|
return url_builder.build(issue, only_path: true) unless use_work_items_path?
|
|
|
|
|
|
|
|
project_work_items_path(issue.project, work_items_path: issue.id)
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
delegator_override :subscribed?
|
2019-12-21 20:55:43 +05:30
|
|
|
def subscribed?
|
|
|
|
issue.subscribed?(current_user, issue.project)
|
|
|
|
end
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
def project_emails_disabled?
|
|
|
|
issue.project.emails_disabled?
|
|
|
|
end
|
2022-06-21 17:19:12 +05:30
|
|
|
|
|
|
|
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
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
IssuePresenter.prepend_mod_with('IssuePresenter')
|