We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4aad27 commit b1e28d0Copy full SHA for b1e28d0
apps/meteor/app/api/server/v1/e2e.ts
@@ -59,16 +59,11 @@ const e2eEndpoints = API.v1.post(
59
400: validateBadRequestErrorResponse,
60
401: validateUnauthorizedErrorResponse,
61
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
- ],
+ type: 'object',
+ properties: {
+ success: { type: 'boolean', enum: [true] },
+ },
+ required: ['success'],
72
}),
73
},
74
0 commit comments