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 20:58:47 +01:00
# frozen_string_literal: true
module SocialHelper
2024-03-01 20:47:38 +01:00
include SocialHelper::BlueskyMethods
include SocialHelper::TwitterMethods
include SocialHelper::TumblrMethods
2023-02-19 20:58:47 +01: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 15:32:48 +02:00
protocol: (APP_CONFIG["https"] ? :https : :http),
)
end
2023-02-19 20:58:47 +01:00
end