2024-07-05 18:24:16 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('list', {
|
|
|
|
|
path: 'group',
|
2025-02-25 06:17:10 +00:00
|
|
|
icon: 'pajamas:group',
|
2025-07-14 18:04:30 +01:00
|
|
|
|
2024-07-05 18:24:16 +00:00
|
|
|
keywords: ['group'],
|
2025-07-12 23:02:35 -07:00
|
|
|
component: lazy(() => import('./index')),
|
|
|
|
|
i18n: {
|
2025-07-13 11:25:05 +01:00
|
|
|
name: 'list:group.title',
|
|
|
|
|
description: 'list:group.description',
|
2025-07-18 14:45:15 -07:00
|
|
|
shortDescription: 'list:group.shortDescription',
|
|
|
|
|
userTypes: ['General Users', 'Students', 'Developers']
|
2025-07-12 23:02:35 -07:00
|
|
|
}
|
2024-07-09 23:38:29 +01:00
|
|
|
});
|