@appsemble/utils
Version:
Utility functions used in Appsemble internally
24 lines • 802 B
JavaScript
export const pathItems = {
get: {
description: 'Get the accounts that have been linked to an app and the user',
tags: ['main', 'user', 'current-user', 'app', 'account'],
operationId: 'getCurrentUserAppAccounts',
security: [{ studio: [] }],
responses: {
200: {
description: 'A list of linked accounts',
content: {
'application/json': {
schema: {
type: 'array',
items: {
$ref: '#/components/schemas/AppAccount',
},
},
},
},
},
},
},
};
//# sourceMappingURL=accounts.js.map