summaryrefslogtreecommitdiff
path: root/lib/api/helpers/protected_branches_helpers.rb
blob: 4a968ad1d6064ac0bf5ee1128612ea2748e72ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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

API::Helpers::ProtectedBranchesHelpers.prepend_mod_with('API::Helpers::ProtectedBranchesHelpers')