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

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

class Terraform::ServicesController < ApplicationController
  skip_before_action :authenticate_user!

  feature_category :package_registry

  def index
    render json: { 'modules.v1' => "/api/#{::API::API.version}/packages/terraform/modules/v1/" }
  end
end