diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-15 10:57:02 +0300 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-09-15 10:57:02 +0300 |
| commit | bdbadebe3e6e25180d8c1465dde4573fa0ecc389 (patch) | |
| tree | 64530175e13127cbc68cc9d6c24adfb6c7e56912 /app/mailers/emails/groups.rb | |
| parent | 1aa48174db63871bb10b53e49c86222a4d9b7c6d (diff) | |
| download | gitlab-ce-bdbadebe3e6e25180d8c1465dde4573fa0ecc389.tar.gz | |
Fix adminarea and emails for new membership logic
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/mailers/emails/groups.rb')
| -rw-r--r-- | app/mailers/emails/groups.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/emails/groups.rb b/app/mailers/emails/groups.rb index 3f7c1d27350..8c09389985e 100644 --- a/app/mailers/emails/groups.rb +++ b/app/mailers/emails/groups.rb @@ -1,6 +1,6 @@ module Emails module Groups - def access_level_granted_email(user_group_id) + def group_access_granted_email(user_group_id) @membership = GroupMember.find(user_group_id) @group = @membership.group @target_url = group_url(@group) |
