File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
integration-tests/typescript-nextjs/src/app/todo-lists.yaml/attachments Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1111 "files" : {
1212 "ignore" : [
1313 " integration-tests/**/generated/*" ,
14+ " integration-tests/typescript-nextjs/src/app/**/*" ,
1415 " integration-tests-definitions/**/*" ,
1516 " e2e/src/generated/**/*" ,
1617 " schemas/*.json" ,
Original file line number Diff line number Diff line change 1- import { _GET , _POST } from "../../../generated/todo-lists.yaml/attachments/route"
1+ import {
2+ _GET ,
3+ _POST ,
4+ } from "../../../generated/todo-lists.yaml/attachments/route"
25
36export const GET = _GET ( async ( { } , respond , context ) => {
47 // TODO: implementation
5- return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
8+ return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
69} )
7- export const POST = _POST ( async ( { body} , respond , context ) => {
10+ export const POST = _POST ( async ( { body } , respond , context ) => {
811 // TODO: implementation
9- return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
12+ return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
1013} )
You can’t perform that action at this time.
0 commit comments