A self-hosted image host in Python 3.6+
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

5 年前
1234567891011121314151617181920212223242526272829303132
  1. # To-dos
  2. ### Main
  3. * User
  4. * * Registration
  5. * * Login
  6. * * Preferences
  7. * * Review Images/Albums
  8. * * * incl. delete
  9. * Admin
  10. * * Site preferences
  11. * Upload
  12. * * Require login
  13. * View
  14. * * Individual image
  15. * * Album
  16. * * By tag
  17. * * By user
  18. ### API
  19. * Login (POST)
  20. * Upload image (POST)
  21. * Create album (POST)
  22. * Delete image (POST)
  23. * Delete album (POST)
  24. * * Orphan images or delete images
  25. * Fetch image (GET)
  26. * Fetch album (GET)
  27. * Fetch tag (GET)
  28. * Fetch user images (GET)