[PR #2] [MERGED] Routes implementation #1

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

📋 Pull Request Information

Original PR: https://github.com/GithubOrgProjectPiza/server/pull/2
Author: @Stone-Red-Code
Created: 4/2/2022
Status: Merged
Merged: 4/2/2022
Merged by: @Stone-Red-Code

Base: mainHead: routes-implementation


📝 Commits (10+)

📊 Changes

17 files changed (+3742 additions, -5 deletions)

View changed files

📝 package-lock.json (+3210 -4)
📝 package.json (+5 -1)
prisma/schema.prisma (+65 -0)
src/controller/orders.controller.ts (+89 -0)
src/controller/organisations.controller.ts (+87 -0)
src/controller/pizzas.controller.ts (+98 -0)
src/controller/restaurants.controller.ts (+87 -0)
📝 src/controller/testcontroller.controller.ts (+5 -0)
src/datatypes.ts (+5 -0)
📝 src/index.ts (+13 -0)
src/lib/prisma.lib.ts (+8 -0)
src/routes/orders.route.ts (+11 -0)
src/routes/organisations.route.ts (+16 -0)
src/routes/pizzas.route.ts (+11 -0)
src/routes/restaurants.route.ts (+11 -0)
📝 src/routes/testrouter.route.ts (+12 -0)
src/statusCodes.ts (+9 -0)

📄 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/GithubOrgProjectPiza/server/pull/2 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 4/2/2022 **Status:** ✅ Merged **Merged:** 4/2/2022 **Merged by:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Base:** `main` ← **Head:** `routes-implementation` --- ### 📝 Commits (10+) - [`0ed9a65`](https://github.com/GithubOrgProjectPiza/server/commit/0ed9a65331b2baab58542057af8f7f3b49576bd0) Add broken prisma schema - [`bacea5c`](https://github.com/GithubOrgProjectPiza/server/commit/bacea5cfea41d03edb45ac8f44f1ce5d541b748a) Fix prisma schema - [`cae5f6b`](https://github.com/GithubOrgProjectPiza/server/commit/cae5f6b9a1b36ed352b3373241f96d38f409c0e4) Update prisma schema - [`94cf2d0`](https://github.com/GithubOrgProjectPiza/server/commit/94cf2d0fe7d80367adbe19da941559c1b9d1a55f) Merge branch 'main' into DB_schema - [`dad7663`](https://github.com/GithubOrgProjectPiza/server/commit/dad7663aca57c5a657c1cf313beb90042d6a986f) Merge pull request #1 from GithubOrgProjectPiza/DB_schema - [`c6319ed`](https://github.com/GithubOrgProjectPiza/server/commit/c6319edc313297038fdaaebf3877d6ea34095731) Update package.json to add prisma; Add prisma library - [`da35fcf`](https://github.com/GithubOrgProjectPiza/server/commit/da35fcf424f569d956eef083a18dbb0167a7c6ab) Add tests - [`12abcad`](https://github.com/GithubOrgProjectPiza/server/commit/12abcad196b5b8e67d3b955c45cb2197b85b3107) Add more testing stuff - [`f3bf685`](https://github.com/GithubOrgProjectPiza/server/commit/f3bf6855e3fbe2622e8052ed0faacb1a9f03faaa) Add tests - [`d94e918`](https://github.com/GithubOrgProjectPiza/server/commit/d94e918533e0e7166d049bf50bc727d433ed9adc) Add more testing stuff ### 📊 Changes **17 files changed** (+3742 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+3210 -4) 📝 `package.json` (+5 -1) ➕ `prisma/schema.prisma` (+65 -0) ➕ `src/controller/orders.controller.ts` (+89 -0) ➕ `src/controller/organisations.controller.ts` (+87 -0) ➕ `src/controller/pizzas.controller.ts` (+98 -0) ➕ `src/controller/restaurants.controller.ts` (+87 -0) 📝 `src/controller/testcontroller.controller.ts` (+5 -0) ➕ `src/datatypes.ts` (+5 -0) 📝 `src/index.ts` (+13 -0) ➕ `src/lib/prisma.lib.ts` (+8 -0) ➕ `src/routes/orders.route.ts` (+11 -0) ➕ `src/routes/organisations.route.ts` (+16 -0) ➕ `src/routes/pizzas.route.ts` (+11 -0) ➕ `src/routes/restaurants.route.ts` (+11 -0) 📝 `src/routes/testrouter.route.ts` (+12 -0) ➕ `src/statusCodes.ts` (+9 -0) </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:25 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: GithubOrgProjectPiza/server#1