2020-01-18 10:13:50 +01:00
|
|
|
import classic from 'ember-classic-decorator';
|
2018-12-29 01:27:37 +01:00
|
|
|
import Route from '@ember/routing/route';
|
2014-10-30 21:44:22 +01:00
|
|
|
|
2020-01-18 10:13:50 +01:00
|
|
|
@classic
|
|
|
|
export default class SettingsRoute extends Route {
|
2016-01-31 14:32:32 +01:00
|
|
|
model() {
|
2015-07-07 11:52:46 +02:00
|
|
|
return this.modelFor('create');
|
|
|
|
}
|
2020-01-18 10:13:50 +01:00
|
|
|
}
|