mastodon/app/controllers/concerns/async_refreshes_concern.rb
2025-06-12 14:54:00 +00:00

12 lines
289 B
Ruby

# frozen_string_literal: true
module AsyncRefreshesConcern
private
def add_async_refresh_header(async_refresh, retry_seconds: 3)
return unless async_refresh.running?
response.headers['Mastodon-Async-Refresh'] = "id=\"#{async_refresh.id}\", retry=#{retry_seconds}"
end
end