提交 72843e02 编写于 作者: Z Z.J. van de Weg

Fix tests

上级 53846da2
...@@ -28,7 +28,7 @@ class ChatSlashCommandsService < Service ...@@ -28,7 +28,7 @@ class ChatSlashCommandsService < Service
end end
def trigger(params) def trigger(params)
return access_presenter unless valid_token?(params[:token]) return unless valid_token?(params[:token])
user = find_chat_user(params) user = find_chat_user(params)
...@@ -36,16 +36,12 @@ class ChatSlashCommandsService < Service ...@@ -36,16 +36,12 @@ class ChatSlashCommandsService < Service
Gitlab::ChatCommands::Command.new(project, user, params).execute Gitlab::ChatCommands::Command.new(project, user, params).execute
else else
url = authorize_chat_name_url(params) url = authorize_chat_name_url(params)
access_presenter(url).authorize Gitlab::ChatCommands::Presenters::Access.new(url).authorize
end end
end end
private private
def access_presenter(url = nil)
Gitlab::ChatCommands::Presenters::Access.new(url)
end
def find_chat_user(params) def find_chat_user(params)
ChatNames::FindUserService.new(self, params).execute ChatNames::FindUserService.new(self, params).execute
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册