mirror of
https://github.com/mastodon/mastodon.git
synced 2026-08-16 18:56:52 -05:00
10 lines
208 B
Ruby
10 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::Accounts::BaseController < Api::BaseController
|
|
private
|
|
|
|
def set_account
|
|
@account = Account.without_requested_deletion.find(params[:account_id])
|
|
end
|
|
end
|