Skip to content

Commit b1e28d0

Browse files
fix: remove code that are not important
1 parent f4aad27 commit b1e28d0

File tree

1 file changed

+5
-10
lines changed
  • apps/meteor/app/api/server/v1

1 file changed

+5
-10
lines changed

apps/meteor/app/api/server/v1/e2e.ts

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,11 @@ const e2eEndpoints = API.v1.post(
5959
400: validateBadRequestErrorResponse,
6060
401: validateUnauthorizedErrorResponse,
6161
200: ajv.compile<void>({
62-
allOf: [
63-
{ anyOf: [{ $ref: '#/components/schemas/IOAuthApps' }, { type: 'null' }] },
64-
{
65-
type: 'object',
66-
properties: {
67-
success: { type: 'boolean', enum: [true] },
68-
},
69-
required: ['success'],
70-
},
71-
],
62+
type: 'object',
63+
properties: {
64+
success: { type: 'boolean', enum: [true] },
65+
},
66+
required: ['success'],
7267
}),
7368
},
7469
},

0 commit comments

Comments
 (0)