Welcome to mirror list, hosted at ThFree Co, Russian Federation.

echo.rb « functions « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3104486faac1984a6a800ae7b82d3b320a0a7cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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