* .well-known/social-relay - to serve subscription preferences to relays * Workers.deferred_dispatch relay carbon copy functionality for outbound sending See discussion here: https://www.loomio.org/d/9vpoe0UR/public-post-federation#comment-730911 and spec here: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts
7 lines
141 B
Ruby
7 lines
141 B
Ruby
class SocialRelayController < ApplicationController
|
|
respond_to :json
|
|
|
|
def well_known
|
|
render json: SocialRelayPresenter.new
|
|
end
|
|
end
|