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: 185fcd3e9349d9b2c4606832bbe4c4cec8d8dfc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class IssuePresenter < Gitlab::View::Presenter::Delegated
  presents :issue

  def issue_path
    url_builder.build(issue, only_path: true)
  end

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