1# frozen_string_literal: true 2 3module Oauth 4 class MetadataController < ActionController::API 5 def show 6 render formats: :json 7 end 8 end 9end