@appsemble/utils
Version:
Utility functions used in Appsemble internally
33 lines • 1.16 kB
JavaScript
export const pathItems = {
parameters: [{ $ref: '#/components/parameters/organizationId' }],
get: {
tags: ['main', 'organization', 'app'],
parameters: [
{
name: 'language',
schema: { type: 'string' },
description: 'The language to include the translations of, if available',
in: 'query',
},
],
description: 'Get a list of an organization’s apps. Private apps are excluded unless the user is in the organization.',
operationId: 'getOrganizationApps',
responses: {
200: {
description: 'The list of this organization’s apps.',
content: {
'application/json': {
schema: {
type: 'array',
items: {
$ref: '#/components/schemas/App',
},
},
},
},
},
},
security: [{ studio: [] }, {}],
},
};
//# sourceMappingURL=apps.js.map