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,16 @@
# frozen_string_literal: true
class Api::V1Alpha::AsyncRefreshesController < Api::BaseController
before_action -> { doorkeeper_authorize! :read }
before_action :require_user!
def show
async_refresh = AsyncRefresh.find(params[:id])
if async_refresh
render json: async_refresh
else
not_found
end
end
end