Browse Source

add overriding truncated_namespace condition for truncating paths for digital ocean

tags/v1.1.4
Austin Lanari 5 years ago
parent
commit
6c96d68f77
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      lib/pleroma/uploaders/s3.ex

+ 9
- 4
lib/pleroma/uploaders/s3.ex View File

@@ -13,10 +13,15 @@ defmodule Pleroma.Uploaders.S3 do
bucket = Keyword.fetch!(config, :bucket)

bucket_with_namespace =
if namespace = Keyword.get(config, :bucket_namespace) do
namespace <> ":" <> bucket
else
bucket
cond do
truncated_namespace = Keyword.get(config, :truncated_namespace) ->
truncated_namespace

namespace = Keyword.get(config, :bucket_namespace) ->
namespace <> ":" <> bucket

true ->
bucket
end

{:ok,


Loading…
Cancel
Save