summaryrefslogtreecommitdiff
path: root/app/helpers/notify_helper.rb
blob: 38c98776fdf6eaa38afc372726e4726b8282b68f (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
35
36
37
# frozen_string_literal: true

module NotifyHelper
  def merge_request_reference_link(entity, *args)
    link_to(entity.to_reference, merge_request_url(entity, *args))
  end

  def issue_reference_link(entity, *args, full: false)
    link_to(entity.to_reference(full: full), issue_url(entity, *args))
  end

  def invited_role_description(role_name)
    case role_name
    when "Guest"
      s_("InviteEmail|As a guest, you can view projects, leave comments, and create issues.")
    when "Reporter"
      s_("InviteEmail|As a reporter, you can view projects and reports, and leave comments on issues.")
    when "Developer"
      s_("InviteEmail|As a developer, you have full access to projects, so you can take an idea from concept to production.")
    when "Maintainer"
      s_("InviteEmail|As a maintainer, you have full access to projects. You can push commits to the default branch and deploy to production.")
    when "Owner"
      s_("InviteEmail|As an owner, you have full access to projects and can manage access to the group, including inviting new members.")
    when "Minimal Access"
      s_("InviteEmail|As a user with minimal access, you can view the high-level group from the UI and API.")
    end
  end

  def invited_to_description(source)
    case source
    when "project"
      s_('InviteEmail|Projects can be used to host your code, track issues, collaborate on code, and continuously build, test, and deploy your app with built-in GitLab CI/CD.')
    when "group"
      s_('InviteEmail|Groups assemble related projects together and grant members access to several projects at once.')
    end
  end
end