summaryrefslogtreecommitdiff
path: root/lib/api/helpers/users_helpers.rb
blob: 56fd3c6602d34bb4931f0f713a5ba8828fc7cd2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

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

      params :optional_params_ee do
      end

      params :optional_index_params_ee do
      end
    end
  end
end