Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in doc #443

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/frontend_blueimp.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ security:
Next steps
----------
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).
* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_dropzone.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Be sure to check out the [official manual](http://www.dropzonejs.com/) for detai
Next steps
----------
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).
* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_fancyupload.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Be sure to check out the [official manual](http://digitarald.de/project/fancyupl
Next steps
----------

After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).

* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_fineuploader.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Be sure to check out the [official manual](https://github.com/FineUploader/fine-
Next steps
----------

After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).

* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_mooupload.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Be sure to check out the [official manual](https://github.com/juanparati/MooUplo
Next steps
----------

After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).

* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_plupload.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ security:
Next steps
----------

After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).

* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/frontend_uploadify.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Be sure to check out the [official manual](http://www.uploadify.com/documentatio
Next steps
----------
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/Resources/doc/index.md#next-steps).
After this setup, you can move on and implement some of the more advanced features. A full list is available [here](https://github.com/1up-lab/OneupUploaderBundle/blob/main/doc/index.md#next-steps).
* [Process uploaded files using custom logic](custom_logic.md)
* [Return custom data to frontend](response.md)
Expand Down
4 changes: 2 additions & 2 deletions tests/Uploader/Storage/GaufretteAmazonS3StorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ protected function setUp(): void
fclose($pointer);

$service = new AmazonClient([
'key' => getenv('AWS_ACCESS_KEY_ID'),
'secret' => getenv('AWS_SECRET_ACCESS_KEY'),
'key' => getenv('AWS_ACCESS_KEY_ID'),
'secret' => getenv('AWS_SECRET_ACCESS_KEY'),
]);
$adapter = new S3Adapter($service, getenv('AWS_BUCKET'));
$this->filesystem = new GaufretteFilesystem($adapter);
Expand Down
Loading