summaryrefslogtreecommitdiff
path: root/app/graphql/functions/echo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/functions/echo.rb')
-rw-r--r--app/graphql/functions/echo.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/graphql/functions/echo.rb b/app/graphql/functions/echo.rb
deleted file mode 100644
index 3104486faac..00000000000
--- a/app/graphql/functions/echo.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-module Functions
- class Echo < BaseFunction
- argument :text, GraphQL::STRING_TYPE
-
- description "Testing endpoint to validate the API with"
-
- def call(obj, args, ctx)
- username = ctx[:current_user]&.username
-
- "#{username.inspect} says: #{args[:text]}"
- end
- end
-end