2
0

Experimental Async Refreshes API (#34918)

This commit is contained in:
David Roetzel
2025-06-12 16:54:00 +02:00
committed by GitHub
parent 825312d4b0
commit 319fbbbfac
11 changed files with 437 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
# 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