Retrospring/app/helpers/social_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
435 B
Ruby
Raw Normal View History

2023-02-19 11:58:47 -08:00
# frozen_string_literal: true
module SocialHelper
2024-03-01 11:47:38 -08:00
include SocialHelper::BlueskyMethods
include SocialHelper::TwitterMethods
include SocialHelper::TumblrMethods
2023-02-19 11:58:47 -08:00
include SocialHelper::TelegramMethods
def answer_share_url(answer)
answer_url(
id: answer.id,
username: answer.user.screen_name,
host: APP_CONFIG["hostname"],
2023-10-16 06:32:48 -07:00
protocol: (APP_CONFIG["https"] ? :https : :http),
)
end
2023-02-19 11:58:47 -08:00
end