gitlab-org--gitlab-foss/app/services/chat_names/find_user_service.rb

27 lines
465 B
Ruby
Raw Normal View History

module ChatNames
class FindUserService
2016-11-16 13:56:30 +00:00
def initialize(service, params)
@service = service
@params = params
end
def execute
2016-11-16 13:56:30 +00:00
chat_name = find_chat_name
return unless chat_name
2016-11-17 15:29:16 +00:00
chat_name.touch(:last_used_at)
2016-11-16 13:56:30 +00:00
chat_name.user
end
private
def find_chat_name
ChatName.find_by(
service: @service,
team_id: @params[:team_id],
chat_id: @params[:user_id]
)
end
end
end