2018-11-27 10:10:40 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IssuePresenter < Gitlab::View::Presenter::Delegated
|
|
|
|
presents :issue
|
|
|
|
|
2019-05-31 12:46:16 -04:00
|
|
|
def issue_path
|
2020-04-06 14:09:37 -04:00
|
|
|
url_builder.build(issue, only_path: true)
|
2019-05-31 12:46:16 -04:00
|
|
|
end
|
|
|
|
|
2019-10-01 20:06:26 -04:00
|
|
|
def subscribed?
|
|
|
|
issue.subscribed?(current_user, issue.project)
|
|
|
|
end
|
2018-11-27 10:10:40 -05:00
|
|
|
end
|