Files
gitlabhq/app/presenters/issue_presenter.rb
2023-12-01 03:13:34 +00:00

41 lines
996 B
Ruby

# frozen_string_literal: true
class IssuePresenter < Gitlab::View::Presenter::Delegated
presents ::Issue, as: :issue
def issue_path
web_path
end
delegator_override :subscribed?
def subscribed?
issue.subscribed?(current_user, issue.project)
end
def parent_emails_disabled?
issue.resource_parent.emails_disabled?
end
def parent_emails_enabled?
issue.resource_parent.emails_enabled?
end
delegator_override :service_desk_reply_to
def service_desk_reply_to
return unless super.present?
return super if Ability.allowed?(current_user, :read_external_emails, issue.project)
Gitlab::Utils::Email.obfuscated_email(super, deform: true)
end
delegator_override :external_author
alias_method :external_author, :service_desk_reply_to
delegator_override :issue_email_participants
def issue_email_participants
issue.issue_email_participants.present(current_user: current_user)
end
end
IssuePresenter.prepend_mod_with('IssuePresenter')