This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/teamList.js
kolaente fe6c859150
All checks were successful
continuous-integration/drone/push Build is passing
Revert "Use deep imports for importing lodash to make tree shaking easier"
This reverts commit 3c3767a9
2020-03-03 21:02:13 +01:00

13 lines
227 B
JavaScript

import TeamShareBaseModel from './teamShareBase'
import {merge} from 'lodash'
export default class TeamListModel extends TeamShareBaseModel {
defaults() {
return merge(
super.defaults(),
{
listID: 0,
}
)
}
}