debian-mirror-gitlab/app/services/chat_names/find_user_service.rb
2017-08-17 22:00:37 +05:30

27 lines
465 B
Ruby

module ChatNames
class FindUserService
def initialize(service, params)
@service = service
@params = params
end
def execute
chat_name = find_chat_name
return unless chat_name
chat_name.touch(:last_used_at)
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