From 6e91fbf77476011a7fd86ca3467aad6d7b110ff3 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Tue, 13 Oct 2020 12:08:41 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- app/helpers/startupjs_helper.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/helpers/startupjs_helper.rb (limited to 'app/helpers/startupjs_helper.rb') diff --git a/app/helpers/startupjs_helper.rb b/app/helpers/startupjs_helper.rb new file mode 100644 index 00000000000..b595590c7c9 --- /dev/null +++ b/app/helpers/startupjs_helper.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +module StartupjsHelper + def page_startup_graphql_calls + @graphql_startup_calls + end + + def add_page_startup_graphql_call(query, variables = {}) + @graphql_startup_calls ||= [] + file_location = File.join(Rails.root, "app/graphql/queries/#{query}.query.graphql") + + return unless File.exist?(file_location) + + query_str = File.read(file_location) + @graphql_startup_calls << { query: query_str, variables: variables } + end +end -- cgit v1.2.3