mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
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
|