summaryrefslogtreecommitdiff
path: root/lib/api/helpers/issues_helpers.rb
blob: f6762910b0c499a2a6e405742f4053cf5f3878d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module API
  module Helpers
    module IssuesHelpers
      def self.update_params_at_least_one_of
        [
          :assignee_id,
          :assignee_ids,
          :confidential,
          :created_at,
          :description,
          :discussion_locked,
          :due_date,
          :labels,
          :milestone_id,
          :state_event,
          :title
        ]
      end
    end
  end
end