mirror of https://github.com/tootsuite/mastodon
17 lines
281 B
Ruby
17 lines
281 B
Ruby
|
class AccountsController < ApplicationController
|
||
|
before_action :set_account
|
||
|
|
||
|
def show
|
||
|
respond_to do |format|
|
||
|
format.html
|
||
|
format.atom
|
||
|
end
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_account
|
||
|
@account = Account.find_by!(username: params[:username], domain: nil)
|
||
|
end
|
||
|
end
|