blob: 50b5c08e687474f14fde5a4ffb0dc4f70bda9880 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
class AccountsController < ApplicationController
layout 'public'
before_action :set_account
before_action :set_webfinger_header
def show
@statuses = @account.statuses.order('id desc').with_includes.with_counters
respond_to do |format|
format.html { @statuses = @statuses.paginate(page: params[:page], per_page: 10)}
format.atom
end
end
def followers
@followers = @account.followers.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
end
def following
@following = @account.following.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
end
private
def set_account
@account = Account.find_by!(username: params[:username], domain: nil)
end
def set_webfinger_header
response.headers['Link'] = "<#{webfinger_account_url}>; rel=\"lrdd\"; type=\"application/xrd+xml\""
end
def webfinger_account_url
webfinger_url(resource: "acct:#{@account.acct}@#{Rails.configuration.x.local_domain}")
end
end
|