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

deployments_controller.rb « google_cloud « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e7fd73e378577f5d5c023075b36f9f65c5c17c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Projects::GoogleCloud::DeploymentsController < Projects::GoogleCloud::BaseController
  before_action :validate_gcp_token!

  def cloud_run
    render json: "Placeholder"
  end

  def cloud_storage
    render json: "Placeholder"
  end
end