debian-mirror-gitlab/app/controllers/projects/aws/configuration_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
271 B
Ruby
Raw Normal View History

2023-07-09 08:55:56 +05:30
# frozen_string_literal: true
module Projects
module Aws
class ConfigurationController < Projects::Aws::BaseController
def index
js_data = {}
@js_data = Gitlab::Json.dump(js_data)
track_event(:render_page)
end
end
end
end