Skip to content

Commit

Permalink
Allow 'endpoint' option in AwsS3 storage configuration (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivoham authored Oct 11, 2020
1 parent 7411b0e commit ce00f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function getConfigTreeBuilder()
$this->validateAuthenticationType(['root'], $config, 'Local');
break;
case 'AwsS3':
$this->validateAuthenticationType(['key', 'secret', 'region', 'version', 'bucket', 'root'], $config, 'AwsS3');
$this->validateAuthenticationType(['key', 'secret', 'region', 'version', 'bucket', 'root', 'endpoint'], $config, 'AwsS3');
break;
case 'B2':
$this->validateAuthenticationType(['key', 'accountId', 'bucket'], $config, 'B2');
Expand Down

0 comments on commit ce00f7c

Please sign in to comment.