summaryrefslogtreecommitdiff
path: root/app/services/chat_names/find_user_service.rb
blob: d458b814183c8b40245141b90581521fdfadc1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.update_last_used_at
      chat_name
    end

    private

    def find_chat_name
      ChatName.find_by(
        service: @service,
        team_id: @params[:team_id],
        chat_id: @params[:user_id]
      )
    end
  end
end