UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

32 lines 1.04 kB
export const pathItems = { get: { tags: ['main', 'user', 'current-user', 'app'], parameters: [ { name: 'language', schema: { type: 'string' }, description: 'The language to include the translations of, if available', in: 'query', }, ], description: 'Get all apps from organizations that the user is in.', operationId: 'queryCurrentUserApps', responses: { 200: { description: 'The list of all apps the user is in.', content: { 'application/json': { schema: { type: 'array', items: { $ref: '#/components/schemas/App', }, }, }, }, }, }, security: [{ studio: [] }], }, }; //# sourceMappingURL=apps.js.map