Pipeline registrazione/upload con storage S3, archivio web e app, proxy replay per il browser, OAuth YouTube sulla pagina club (Premium Full) e footer legale. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
221 B
Ruby
13 lines
221 B
Ruby
module Recordings
|
|
# @deprecated Use Recordings::FinalizeSession
|
|
class IndexSession
|
|
def initialize(session)
|
|
@session = session
|
|
end
|
|
|
|
def call
|
|
FinalizeSession.new(@session).call
|
|
end
|
|
end
|
|
end
|