summaryrefslogtreecommitdiff
path: root/lib/api/helpers/protected_branches_helpers.rb
blob: 0fc6841d79aa7c51bfa45801b4c39e03d33aeca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module API
  module Helpers
    module ProtectedBranchesHelpers
      extend ActiveSupport::Concern
      extend Grape::API::Helpers

      params :optional_params_ee do
      end
    end
  end
end