mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
12 lines
290 B
Ruby
12 lines
290 B
Ruby
# 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
|