mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
|
import { Group } from '../../../app/frontend/src/javascript/models/group';
|
||
|
|
||
|
const groups: Array<Group> = [
|
||
|
{ id: 1, slug: 'standard', name: 'Standard', disabled: false },
|
||
|
{ id: 2, slug: 'students', name: 'Students', disabled: false }
|
||
|
];
|
||
|
|
||
|
export default groups;
|