Move everything to models and services #17

Merged
konrad merged 82 commits from refactor/models into master 2019-03-02 10:25:10 +00:00
Showing only changes of commit 68dfe7c5eb - Show all commits

View File

@ -0,0 +1,18 @@
import AbstractModel from './abstractModel'
export default class TeamNamespaceModel extends AbstractModel {
constructor(data) {
super(data)
}
defaults() {
return {
id: 0,
teamID: 0,
right: 0,
created: 0,
updated: 0
}
}
}