mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 06:13:43 +01:00
10 lines
224 B
Ruby
10 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
module HomeHelper
|
|
def default_props
|
|
{
|
|
token: @token,
|
|
account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
|
|
}
|
|
end
|
|
end
|