Bare-bones RS client

This commit is contained in:
2020-09-08 16:50:01 +02:00
parent 00156c8d70
commit a48d74608f
9 changed files with 178 additions and 4 deletions

13
app/routes/application.ts Normal file
View File

@@ -0,0 +1,13 @@
import Route from '@ember/routing/route';
import { inject as service } from '@ember/service';
import Storage from 'dashtab/services/storage';
export default class Application extends Route.extend({
// anything which *must* be merged to prototype here
}) {
@service storage!: Storage;
beforeModel() {
this.storage.initialize();
}
}