1. 04 May, 2019 1 commit
  2. 19 Feb, 2019 1 commit
    • 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.
  3. 19 Dec, 2018 1 commit
  4. 08 Dec, 2018 3 commits
  5. 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".
  6. 27 Aug, 2018 1 commit