-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Try fix S3 openapi issue * Fix credo issue * Run only test ci * Experimental fix of auth cache error * Return circleci to previous version * Modify test * WiP * Remove IO.inspect * Update circleci config * Apply review changes * Update deps * Update lib/fishjam/component/hls/manager.ex Co-authored-by: Jakub Pisarek <99591440+sgfn@users.noreply.github.com> * Return purging logs from engine * Add TODO * Update deps * Add purging SRTP warnings --------- Co-authored-by: Jakub Pisarek <99591440+sgfn@users.noreply.github.com>
- Loading branch information
Showing
20 changed files
with
206 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
defmodule FishjamWeb.ApiSpec.Component.HLS.S3 do | ||
@moduledoc false | ||
|
||
require OpenApiSpex | ||
alias OpenApiSpex.Schema | ||
|
||
OpenApiSpex.schema(%{ | ||
title: "S3Credentials", | ||
description: | ||
"An AWS S3 credential that will be used to send HLS stream. The stream will only be uploaded if credentials are provided", | ||
type: :object, | ||
properties: %{ | ||
accessKeyId: %Schema{ | ||
type: :string, | ||
description: "An AWS access key identifier, linked to your AWS account." | ||
}, | ||
secretAccessKey: %Schema{ | ||
type: :string, | ||
description: "The secret key that is linked to the Access Key ID." | ||
}, | ||
region: %Schema{ | ||
type: :string, | ||
description: "The AWS region where your bucket is located." | ||
}, | ||
bucket: %Schema{ | ||
type: :string, | ||
description: "The name of the S3 bucket where your data will be stored." | ||
} | ||
}, | ||
required: [:accessKeyId, :secretAccessKey, :region, :bucket] | ||
}) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.