Commit 4ba723b9 authored by Rémy Coutable's avatar Rémy Coutable

Fix Rubocop offenses

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent f2d8c2fa
...@@ -102,7 +102,7 @@ module EE ...@@ -102,7 +102,7 @@ module EE
# Access requesters must be approved by a group owner so we take the # Access requesters must be approved by a group owner so we take the
# first group owner and pass it as `current_user` to `#add_or_update_user_membership`. # first group owner and pass it as `current_user` to `#add_or_update_user_membership`.
# For users that are not access requesters, it doesn't matter if # For users that are not access requesters, it doesn't matter if
#`current_user` is `nil` because the permissions to update users are # `current_user` is `nil` because the permissions to update users are
# not enforced in `Member.add_user`! # not enforced in `Member.add_user`!
added_by = group.members.owners.first.try(:user) added_by = group.members.owners.first.try(:user)
...@@ -164,7 +164,7 @@ module EE ...@@ -164,7 +164,7 @@ module EE
# Access requesters must be approved by a group owner so we take the # Access requesters must be approved by a group owner so we take the
# first group owner and pass it as `current_user` to `#add_or_update_user_membership`. # first group owner and pass it as `current_user` to `#add_or_update_user_membership`.
# For users that are not access requesters, it doesn't matter if # For users that are not access requesters, it doesn't matter if
#`current_user` is `nil` because the permissions to update users are # `current_user` is `nil` because the permissions to update users are
# not enforced in `Member.add_user`! # not enforced in `Member.add_user`!
added_by = group.members.owners.first.try(:user) added_by = group.members.owners.first.try(:user)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment