1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-21 07:06:39 +02:00
keeweb/app/scripts/models/menu/groups-menu-model.js
2019-09-18 23:37:57 +02:00

16 lines
358 B
JavaScript

import { GroupCollection } from 'collections/group-collection';
import { MenuSectionModel } from 'models/menu/menu-section-model';
class GroupsMenuModel extends MenuSectionModel {
constructor() {
super(new GroupCollection());
}
}
GroupsMenuModel.defineModelProperties({
scrollable: true,
grow: true
});
export { GroupsMenuModel };