mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 14:06:04 +01:00
9 lines
204 B
Ruby
9 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
|