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
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 158d21c1fc - Show all commits

View File

@ -1,11 +1,11 @@
import AbstractModel from "./abstractModel";
import AbstractModel from './abstractModel'
export default class NamespaceModel extends AbstractModel {
constructor(data) {
super(data)
}
// Default attributes that define the "empty" state.
// Default attributes that define the 'empty' state.
defaults() {
return {
id: 0,

View File

@ -1,5 +1,5 @@
import AbstractService from "./abstractService"
import NamespaceModel from "../models/namespace"
import AbstractService from './abstractService'
import NamespaceModel from '../models/namespace'
export default class NamespaceService extends AbstractService {
constructor() {