# frozen_string_literal: true class FeatureRatesController < ApplicationController respond_to :json, only: [:index] def index @rates = TranslationCms::Api::FeatureRate.all( _satellite_id: Settings.satellite_id, feature_type_id: params[:feature_type_id] ) respond_with @rates end end