Commit 95e14061 authored by Sean McGivern's avatar Sean McGivern

Add feature categories to controllers beginning with G

parent f9cb0bf9
...@@ -6,6 +6,8 @@ module GoogleApi ...@@ -6,6 +6,8 @@ module GoogleApi
before_action :validate_session_key! before_action :validate_session_key!
feature_category :kubernetes_management
def callback def callback
token, expires_at = GoogleApi::CloudPlatform::Client token, expires_at = GoogleApi::CloudPlatform::Client
.new(nil, callback_google_api_auth_url) .new(nil, callback_google_api_auth_url)
......
...@@ -26,6 +26,8 @@ class GraphqlController < ApplicationController ...@@ -26,6 +26,8 @@ class GraphqlController < ApplicationController
# callback execution order here # callback execution order here
around_action :sessionless_bypass_admin_mode!, if: :sessionless_user? around_action :sessionless_bypass_admin_mode!, if: :sessionless_user?
feature_category :not_owned
def execute def execute
result = multiplex? ? execute_multiplex : execute_query result = multiplex? ? execute_multiplex : execute_query
......
...@@ -29,7 +29,7 @@ RSpec.describe "Every controller" do ...@@ -29,7 +29,7 @@ RSpec.describe "Every controller" do
'H', 'I', 'J', 'K', 'L', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'Q', 'R', 'M', 'N', 'O', 'Q', 'R',
'S', 'T', 'U', 'V', 'W', 'S', 'T', 'U', 'V', 'W',
'X', 'Y', 'Z', 'A', 'X', 'Y', 'Z', 'A', 'G',
'Projects::MergeRequestsController') 'Projects::MergeRequestsController')
"#{controller}##{action}" "#{controller}##{action}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment