summary refs log tree commit diff
path: root/src/api/routes/users
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-03-23 13:51:29 -0400
committerPuyodead1 <puyodead@proton.me>2023-04-13 15:06:21 -0400
commit777e7208dccb3e28f6c2fe85abb5a6d7aaa99ed2 (patch)
treeeaaec58da7cad27f75191172c35540ef5b8c5516 /src/api/routes/users
parentgateway (diff)
downloadserver-ts-777e7208dccb3e28f6c2fe85abb5a6d7aaa99ed2.tar.xz
AAA
Diffstat (limited to 'src/api/routes/users')
-rw-r--r--src/api/routes/users/#id/profile.ts14
-rw-r--r--src/api/routes/users/#id/relationships.ts6
2 files changed, 10 insertions, 10 deletions
diff --git a/src/api/routes/users/#id/profile.ts b/src/api/routes/users/#id/profile.ts

index 2836c563..650873ad 100644 --- a/src/api/routes/users/#id/profile.ts +++ b/src/api/routes/users/#id/profile.ts
@@ -16,23 +16,23 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { Router, Request, Response } from "express"; +import { route } from "@spacebar/api"; import { - User, Member, - UserProfileModifySchema, - handleFile, PrivateUserProjection, - emitEvent, + User, + UserProfileModifySchema, UserUpdateEvent, + emitEvent, + handleFile, } from "@spacebar/util"; -import { route } from "@spacebar/api"; +import { Request, Response, Router } from "express"; const router: Router = Router(); router.get( "/", - route({ test: { response: { body: "UserProfileResponse" } } }), + route({ responses: { 200: { body: "UserProfileResponse" } } }), async (req: Request, res: Response) => { if (req.params.id === "@me") req.params.id = req.user_id; diff --git a/src/api/routes/users/#id/relationships.ts b/src/api/routes/users/#id/relationships.ts
index dfe52a5e..f18672b1 100644 --- a/src/api/routes/users/#id/relationships.ts +++ b/src/api/routes/users/#id/relationships.ts
@@ -16,15 +16,15 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { Router, Request, Response } from "express"; -import { User } from "@spacebar/util"; import { route } from "@spacebar/api"; +import { User } from "@spacebar/util"; +import { Request, Response, Router } from "express"; const router: Router = Router(); router.get( "/", - route({ test: { response: { body: "UserRelationsResponse" } } }), + route({ responses: { 200: { body: "UserRelationsResponse" } } }), async (req: Request, res: Response) => { const mutual_relations: object[] = []; const requested_relations = await User.findOneOrFail({