- 04 May, 2019 1 commit
-
-
Janko Marohnić authored
Makes for a nicer `rake routes` command output in Rails apps.
-
- 19 Feb, 2019 1 commit
-
-
Janko Marohnić authored
Unlike some other web frameworks like Roda, Rails adds a trailing slash to PATH_INFO when calling mounted apps on root requests. This means that for `POST /s3/multipart`, the Uppy::S3Multipart::App will receive SCRIPT_NAME: "/s3/multipart" PATH_INFO: "/" instead of SCRIPT_NAME: "/s3/multipart" PATH_INFO: "" So we update the app to handle that trailing slash.
-
- 19 Dec, 2018 1 commit
-
-
Janko Marohnić authored
-
- 08 Dec, 2018 3 commits
-
-
Janko Marohnić authored
-
Janko Marohnić authored
-
Janko Marohnić authored
-
- 05 Dec, 2018 1 commit
-
-
Janko Marohnić authored
This allows defining other /s3/* routes without potential clashes when Uppy::S3Multipart::App isn't mounted last. One example of such route is "/s3/params", which is called by the AWS S3 Uppy plugin. We still keep backwards compatibility for users that currently have it mounted on "/s3".
-
- 27 Aug, 2018 1 commit
-
-
Janko Marohnić authored
-