Commit 4ec0ff2d authored by Patrick Bajao's avatar Patrick Bajao

Use project's group as actor for remove_comment_close_reopen flag

When viewing an issue or merge request, the `@group` ivar isn't
present. For the flag to work for group, we get the `@project`'s
group instead if `@group` isn't present.
parent b12c3c36
...@@ -5,7 +5,7 @@ module CommentAndCloseFlag ...@@ -5,7 +5,7 @@ module CommentAndCloseFlag
included do included do
before_action do before_action do
push_frontend_feature_flag(:remove_comment_close_reopen, @group) push_frontend_feature_flag(:remove_comment_close_reopen, @group || @project&.group)
end end
end end
end end
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