2021-06-08 01:23:25 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Terraform::ServicesController < ApplicationController
|
|
|
|
skip_before_action :authenticate_user!
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
feature_category :package_registry
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
def index
|
|
|
|
render json: { 'modules.v1' => "/api/#{::API::API.version}/packages/terraform/modules/v1/" }
|
|
|
|
end
|
|
|
|
end
|