summaryrefslogtreecommitdiff
path: root/app/controllers/terraform/services_controller.rb
blob: e7b9a94fd8e0bacae95f66b160a9ed742ac198d1 (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 :infrastructure_as_code

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