1. 19 Feb, 2019 2 commits
    • Fix mounting on "/s3/multipart" not working with Rails · bf2bdb1d
      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.
    • Update GitHub link · de569f03
      Janko Marohnić authored
  2. 30 Dec, 2018 1 commit
  3. 19 Dec, 2018 2 commits
  4. 12 Dec, 2018 1 commit
  5. 09 Dec, 2018 1 commit
  6. 08 Dec, 2018 5 commits
  7. 05 Dec, 2018 1 commit
    • Allow and recommend mounting on "/s3/multipart" · f9165a37
      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".
  8. 20 Nov, 2018 2 commits
  9. 06 Nov, 2018 1 commit
  10. 12 Oct, 2018 3 commits
  11. 03 Oct, 2018 3 commits
  12. 09 Sep, 2018 4 commits
  13. 27 Aug, 2018 2 commits