File tree 2 files changed +8
-4
lines changed
integration-tests/typescript-nextjs/src/app/todo-lists.yaml/attachments
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 11
11
"files" : {
12
12
"ignore" : [
13
13
" integration-tests/**/generated/*" ,
14
+ " integration-tests/typescript-nextjs/src/app/**/*" ,
14
15
" integration-tests-definitions/**/*" ,
15
16
" e2e/src/generated/**/*" ,
16
17
" 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"
2
5
3
6
export const GET = _GET ( async ( { } , respond , context ) => {
4
7
// TODO: implementation
5
- return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
8
+ return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
6
9
} )
7
- export const POST = _POST ( async ( { body} , respond , context ) => {
10
+ export const POST = _POST ( async ( { body } , respond , context ) => {
8
11
// TODO: implementation
9
- return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
12
+ return respond . withStatus ( 501 ) . body ( { message : "not implemented" } as any )
10
13
} )
You can’t perform that action at this time.
0 commit comments