mastodon/app/controllers/redirect/accounts_controller.rb

11 lines
209 B
Ruby

# frozen_string_literal: true
class Redirect::AccountsController < Redirect::BaseController
private
def set_resource
@resource = Account.find(params[:id])
not_found if @resource.local?
end
end