feat(plugins): add 2 new methods : user.getAccounts and user.getIdentities

This commit is contained in:
Paulhenry Saux
2026-07-29 13:14:09 +02:00
parent fc116a8b2f
commit 66ff523553
4 changed files with 50 additions and 1 deletions
+1
View File
@@ -87,6 +87,7 @@ const PERMISSION_LABELS: Record<string, { title: string; body: string }> = {
'http:fetch': { title: 'Talk to external services', body: 'Make uncredentialled requests to the third-party origins listed in the manifest.' },
'admin:config': { title: 'Read/write admin config', body: 'Access this plugin\'s admin-supplied configuration values.' },
'ui:download-file': { title: 'Download files', body: 'Download custom files generated by the plugin.' },
'account:read': { title: 'Read your accounts', body: 'Access the list of accounts you have configured in the app.' },
};
export function describePermission(perm: string): { title: string; body: string } {