2023-02-19 11:58:47 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-12-26 13:04:16 -08:00
|
|
|
module SocialHelper
|
2024-03-01 11:47:38 -08:00
|
|
|
include SocialHelper::BlueskyMethods
|
2021-12-26 13:04:16 -08:00
|
|
|
include SocialHelper::TwitterMethods
|
|
|
|
include SocialHelper::TumblrMethods
|
2023-02-19 11:58:47 -08:00
|
|
|
include SocialHelper::TelegramMethods
|
2023-10-16 06:20:04 -07:00
|
|
|
|
|
|
|
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),
|
2023-10-16 06:20:04 -07:00
|
|
|
)
|
|
|
|
end
|
2023-02-19 11:58:47 -08:00
|
|
|
end
|