summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/references/issuable_reference_filter.rb
blob: b8ccb926ae901fa2fb7653082151db4d852b0221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Banzai
  module Filter
    module References
      class IssuableReferenceFilter < AbstractReferenceFilter
        def record_identifier(record)
          record.iid.to_i
        end

        def find_object(parent, iid)
          records_per_parent[parent][iid]
        end

        def parent_from_ref(ref)
          parent_per_reference[ref || current_parent_path]
        end
      end
    end
  end
end