Commit 073684e7 authored by Rémy Coutable's avatar Rémy Coutable

Reduce diff with EE in Groups::CreateService

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 04554d69
......@@ -10,6 +10,8 @@ module Groups
def execute
@group = Group.new(params)
after_build_hook(@group, params)
unless can_use_visibility_level? && can_create_group?
return @group
end
......@@ -30,6 +32,10 @@ module Groups
private
def after_build_hook(group, params)
# overriden in EE
end
def create_chat_team?
Gitlab.config.mattermost.enabled && @chat_team && group.chat_team.nil?
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