Reduce diff with EE in Groups::CreateService

Signed-off-by: Rémy Coutable <remy@rymai.me>
This commit is contained in:
Rémy Coutable 2019-02-01 16:22:30 +01:00
parent 04554d69bc
commit 073684e7a5
No known key found for this signature in database
GPG Key ID: 98DFFD1C0C62B70B
1 changed files with 6 additions and 0 deletions

View File

@ -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