mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 15:59:07 +01:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "cgi"
|
||
|
|
||
|
module SocialHelper::BlueskyMethods
|
||
|
def bluesky_share_url(answer)
|
||
|
"https://bsky.app/intent/compose?text=#{CGI.escape(prepare_tweet(answer))}"
|
||
|
end
|
||
|
end
|