[PR #50] [MERGED] Feature media #79

Closed
opened 2026-09-04 00:22:02 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/detleph/server/pull/50
Author: @Flexla54
Created: 5/17/2022
Status: Merged
Merged: 5/18/2022
Merged by: @Flexla54

Base: devHead: feature-media


📝 Commits (10+)

  • 9cd37a0 Add express.static() to serve semi-static files
  • 0b7380d Add controller and routes to upload images
  • 369d2fd Extract shared error code
  • 0f14b66 Added basic implementation of media
  • e7b5381 FIX: quickly fix all errors in the media system
  • 301be56 Fix and comment code for linking media
  • 52ceb29 Add fulldescription
  • e0538b5 Fix dev.sh script (Now respects port)
  • c2b34b8 Fix media
  • 71c02eb Add functionality to add metadata to media

📊 Changes

18 files changed (+3221 additions, -161 deletions)

View changed files

📝 .gitignore (+3 -0)
📝 Dockerfile (+2 -0)
📝 dev.sh (+2 -0)
📝 package-lock.json (+2613 -130)
📝 package.json (+4 -0)
📝 prisma/schema.prisma (+10 -10)
📝 scripts/docker-entrypoint.dev.sh (+1 -0)
📝 src/Controllers/common.ts (+15 -0)
📝 src/Controllers/discipline.controller.ts (+59 -1)
📝 src/Controllers/event.controller.ts (+182 -16)
src/Controllers/media.controller.ts (+191 -0)
📝 src/Controllers/role_schema.controller.ts (+59 -1)
📝 src/Middleware/error/handler.ts (+1 -1)
📝 src/Routes/discipline.routes.ts (+16 -0)
📝 src/Routes/event.routes.ts (+22 -1)
src/Routes/media.routes.ts (+22 -0)
📝 src/Routes/role_schema.routes.ts (+12 -0)
📝 src/app.ts (+7 -1)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/detleph/server/pull/50 **Author:** [@Flexla54](https://github.com/Flexla54) **Created:** 5/17/2022 **Status:** ✅ Merged **Merged:** 5/18/2022 **Merged by:** [@Flexla54](https://github.com/Flexla54) **Base:** `dev` ← **Head:** `feature-media` --- ### 📝 Commits (10+) - [`9cd37a0`](https://github.com/detleph/server/commit/9cd37a046840fe176fb5d3c73fc41b6752649e09) Add express.static() to serve semi-static files - [`0b7380d`](https://github.com/detleph/server/commit/0b7380d663385fe7806f3412542ec0be5c920acd) Add controller and routes to upload images - [`369d2fd`](https://github.com/detleph/server/commit/369d2fdb7828559f80aa97100368ec63606c9ec1) Extract shared error code - [`0f14b66`](https://github.com/detleph/server/commit/0f14b66a380095f1e2157d653fd37e036775917a) Added basic implementation of media - [`e7b5381`](https://github.com/detleph/server/commit/e7b538188a7045122322174eed6ae19ea18b22f7) FIX: **quickly** fix all errors in the media system - [`301be56`](https://github.com/detleph/server/commit/301be565831fc88ddf15bed10252425581529b61) Fix and comment code for linking media - [`52ceb29`](https://github.com/detleph/server/commit/52ceb29a1d637ded393bb139a1c0f7b58a32c52e) Add fulldescription - [`e0538b5`](https://github.com/detleph/server/commit/e0538b5534cde892b371edc6734c094db2cd0a8e) Fix dev.sh script (Now respects port) - [`c2b34b8`](https://github.com/detleph/server/commit/c2b34b8b26666f21e1e7fbd86de2d9044f2b388f) Fix media - [`71c02eb`](https://github.com/detleph/server/commit/71c02eb50b946cccdd7cee2917eace69c6df51e4) Add functionality to add metadata to media ### 📊 Changes **18 files changed** (+3221 additions, -161 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -0) 📝 `Dockerfile` (+2 -0) 📝 `dev.sh` (+2 -0) 📝 `package-lock.json` (+2613 -130) 📝 `package.json` (+4 -0) 📝 `prisma/schema.prisma` (+10 -10) 📝 `scripts/docker-entrypoint.dev.sh` (+1 -0) 📝 `src/Controllers/common.ts` (+15 -0) 📝 `src/Controllers/discipline.controller.ts` (+59 -1) 📝 `src/Controllers/event.controller.ts` (+182 -16) ➕ `src/Controllers/media.controller.ts` (+191 -0) 📝 `src/Controllers/role_schema.controller.ts` (+59 -1) 📝 `src/Middleware/error/handler.ts` (+1 -1) 📝 `src/Routes/discipline.routes.ts` (+16 -0) 📝 `src/Routes/event.routes.ts` (+22 -1) ➕ `src/Routes/media.routes.ts` (+22 -0) 📝 `src/Routes/role_schema.routes.ts` (+12 -0) 📝 `src/app.ts` (+7 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:22:02 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: detleph/server#79