提交 0cc5e956 编写于 作者: D Douglas Barbosa Alexandre

Merge branch 'ce-reduce-diff-in-groups-create_service' into 'master'

Reduce diff with EE in Groups::CreateService

See merge request gitlab-org/gitlab-ce!24871
......@@ -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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册