summaryrefslogtreecommitdiff
path: root/app/helpers/group_members_helper.rb
blob: c6f13cf5e4d9354a0ae1842dbe3089522aac4104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module GroupMembersHelper
  def clear_ldap_permission_cache_message
    markdown(
      <<-EOT.strip_heredoc
      Be careful, all members of this group (except you)  will have their
      **access level temporarily downgraded** to `Guest`. The next time that a group member
      signs in to GitLab (or after one hour, whichever occurs first) their access level will
      be updated to the one specified on the Group settings page.
      EOT
    )
  end
end