identity_proofs_controller.rb 291 B

12345678910111213141516
  1. # frozen_string_literal: true
  2. class Api::V1::Accounts::IdentityProofsController < Api::BaseController
  3. before_action :require_user!
  4. before_action :set_account
  5. def index
  6. render json: []
  7. end
  8. private
  9. def set_account
  10. @account = Account.find(params[:account_id])
  11. end
  12. end