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