gitlab-org--gitlab-foss/app/controllers/projects/clusters/applications_controller.rb

30 lines
742 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-11-02 14:10:46 +00:00
class Projects::Clusters::ApplicationsController < Projects::ApplicationController
before_action :cluster
before_action :authorize_read_cluster!
before_action :authorize_create_cluster!, only: [:create]
def create
Clusters::Applications::CreateService
.new(@cluster, current_user, create_cluster_application_params)
.execute(request)
head :no_content
rescue Clusters::Applications::CreateService::InvalidApplicationError
render_404
rescue StandardError
head :bad_request
2017-11-02 14:10:46 +00:00
end
private
def cluster
2017-11-02 14:31:25 +00:00
@cluster ||= project.clusters.find(params[:id]) || render_404
2017-11-02 14:10:46 +00:00
end
def create_cluster_application_params
params.permit(:application, :hostname)
end
2017-11-02 14:10:46 +00:00
end