All checks were successful
Build and Publish Docker Image / deploy (push) Successful in 1m44s
Introduce new admin capabilities to manage uploaded boxes and files: - Add routes and handlers for editing boxes and deleting individual files. - Implement `RemoveFileFromBox` in `UploadService` to delete a file's stored objects and remove it from the box (deleting the box if empty). - Implement `AdminUpdateBox` in `UploadService` to update expiry, download limits, and clear password protection. - Remove the unused `AdminFiles` handler. - Add `.claude` to `.gitignore`.
19 lines
217 B
Plaintext
19 lines
217 B
Plaintext
# Go
|
|
bin/
|
|
*.test
|
|
*.out
|
|
|
|
# Local runtime data
|
|
data/
|
|
backend/static/uploads/*
|
|
!backend/static/uploads/.gitkeep
|
|
|
|
# Environment overrides
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.prod.env
|
|
scripts/env/dev.env
|
|
docker-compose.yml
|
|
|
|
.claude |