We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3caf7 commit 79ea487Copy full SHA for 79ea487
1 file changed
src/admin-bff-api/service.tsp
@@ -669,6 +669,16 @@ namespace AdminBFFService {
669
Body<{
670
menuItems: FunchService.MenuItem[];
671
}>) | UnauthorizedResponse;
672
+
673
+ /**
674
+ * メニューを作成する
675
+ * @param body 作成するメニューの情報
676
+ * @returns 作成されたメニュー
677
+ */
678
+ @post create(@body body: FunchService.MenuItemRequest): (CreatedResponse &
679
+ Body<{
680
+ menuItem: FunchService.MenuItem;
681
+ }>) | UnauthorizedResponse;
682
}
683
684
@route("/v1/facultyRooms")
0 commit comments