[PR #53] [MERGED] Dev #84

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

📋 Pull Request Information

Original PR: https://github.com/detleph/server/pull/53
Author: @Stefan-5422
Created: 5/20/2022
Status: Merged
Merged: 5/20/2022
Merged by: @Stefan-5422

Base: mainHead: dev


📝 Commits (10+)

  • 323fc39 Add express.static() to serve semi-static files
  • bb4f4ba Add controller and routes to upload images
  • 13d6f88 Extract shared error code
  • bded472 Added basic implementation of media
  • 1966045 FIX: quickly fix all errors in the media system
  • 734acba Fix and comment code for linking media
  • b1c1e53 Add fulldescription
  • f4288d7 Fix dev.sh script (Now respects port)
  • a16126a Fix media
  • c393508 Add functionality to add metadata to media

📊 Changes

18 files changed (+3222 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 (+8 -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/53 **Author:** [@Stefan-5422](https://github.com/Stefan-5422) **Created:** 5/20/2022 **Status:** ✅ Merged **Merged:** 5/20/2022 **Merged by:** [@Stefan-5422](https://github.com/Stefan-5422) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`323fc39`](https://github.com/detleph/server/commit/323fc396f79eb0a7e31a0d7d7e953f42e53190c8) Add express.static() to serve semi-static files - [`bb4f4ba`](https://github.com/detleph/server/commit/bb4f4babcedcc4e10cb18df0d90d58c673ecbd6a) Add controller and routes to upload images - [`13d6f88`](https://github.com/detleph/server/commit/13d6f881eaab21307b859df72992d59e41f343bf) Extract shared error code - [`bded472`](https://github.com/detleph/server/commit/bded472d05ce04a84ff31da7021c5f98d60c37ae) Added basic implementation of media - [`1966045`](https://github.com/detleph/server/commit/196604599b7d7bd752e3bf5739bbe60483b77b99) FIX: **quickly** fix all errors in the media system - [`734acba`](https://github.com/detleph/server/commit/734acbab382677ac4cdce38becdb72585458a3cb) Fix and comment code for linking media - [`b1c1e53`](https://github.com/detleph/server/commit/b1c1e53a2dc8d5a8e5c6d8b483a0b006294adbc2) Add fulldescription - [`f4288d7`](https://github.com/detleph/server/commit/f4288d7319121714895fa419796aafd7cbac6a5d) Fix dev.sh script (Now respects port) - [`a16126a`](https://github.com/detleph/server/commit/a16126a1db305bfb41fc7e1abe5e6f58a32c832c) Fix media - [`c393508`](https://github.com/detleph/server/commit/c393508a063e02d8cd5dc56cd21ce954f9882d38) Add functionality to add metadata to media ### 📊 Changes **18 files changed** (+3222 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` (+8 -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:03 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: detleph/server#84