2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-23 02:00:20 +11:00
|
|
|
module HomeHelper
|
2016-09-13 10:24:40 +10:00
|
|
|
def default_props
|
|
|
|
{
|
|
|
|
token: @token,
|
2016-11-16 02:56:29 +11:00
|
|
|
account: render(file: 'api/v1/accounts/show', locals: { account: current_user.account }, formats: :json),
|
2016-11-17 03:20:52 +11:00
|
|
|
locale: I18n.locale,
|
2016-09-13 10:24:40 +10:00
|
|
|
}
|
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|