summaryrefslogtreecommitdiff
path: root/lib/api/helpers/variables_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/helpers/variables_helpers.rb')
-rw-r--r--lib/api/helpers/variables_helpers.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/api/helpers/variables_helpers.rb b/lib/api/helpers/variables_helpers.rb
new file mode 100644
index 00000000000..78a92d0f5a6
--- /dev/null
+++ b/lib/api/helpers/variables_helpers.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module API
+ module Helpers
+ module VariablesHelpers
+ extend ActiveSupport::Concern
+ extend Grape::API::Helpers
+
+ params :optional_params_ee do
+ end
+ end
+ end
+end