diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
commit | 859a6fb938bb9ee2a317c46dfa4fcc1af49608f0 (patch) | |
tree | d7f2700abe6b4ffcb2dcfc80631b2d87d0609239 /app/helpers/notify_helper.rb | |
parent | 446d496a6d000c73a304be52587cd9bbc7493136 (diff) | |
download | gitlab-ce-13.9.0-rc42.tar.gz |
Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42
Diffstat (limited to 'app/helpers/notify_helper.rb')
-rw-r--r-- | app/helpers/notify_helper.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/helpers/notify_helper.rb b/app/helpers/notify_helper.rb index db7527d9d58..03da679cfdd 100644 --- a/app/helpers/notify_helper.rb +++ b/app/helpers/notify_helper.rb @@ -8,4 +8,30 @@ module NotifyHelper 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 master 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 |