Skip to content
Snippets Groups Projects
  1. Aug 20, 2015
    • Gunnar Schaefer's avatar
      add created & mod timestamps to users & groups · 6e7aed23
      Gunnar Schaefer authored
      Fresh installs should work out of the box.
      Migration instructions for existing installs:
      db.users.update_many({}, {'$set': {'created': datetime.datetime.utcfromtimestamp(0), 'modified': datetime.datetime.utcnow()}})
      db.groups.update_many({}, {'$set': {'created': datetime.datetime.utcfromtimestamp(0), 'modified': datetime.datetime.utcnow()}})
      6e7aed23
  2. Aug 18, 2015
  3. Aug 15, 2015
  4. Aug 14, 2015
  5. Aug 07, 2015
  6. Aug 06, 2015
  7. Aug 05, 2015
    • Gunnar Schaefer's avatar
      refactor file uploads and downloads · 903e13ce
      Gunnar Schaefer authored
      The following methods now exist for /file endpoints:
      GET /<level>/<id>/file/<filename>
          authenticated file download
      GET /<level>/<id>/file/<filename>?ticket
          authenticated download ticket request
      GET /<level>/<id>/file/<filename>?ticket=<ticket>
          unauthenticated (ticketed) file download
      DELETE /<level>/<id>/file/<filename>
          delete file
      PUT /<level>/<id>/file/<filename>
          update file metadata (not yet implemented)
      POST /<level>/<id>/file/<filename>
          upload file as "body file"
      POST /<level>/<id>/file
          upload file as multipart/form-data
      903e13ce
  8. Aug 04, 2015
  9. Jul 29, 2015
  10. Jul 28, 2015
  11. Jul 25, 2015
  12. Jul 24, 2015
  13. Jul 23, 2015
  14. Jul 22, 2015
  15. Jul 21, 2015
Loading