mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
8 lines
133 B
Plaintext
8 lines
133 B
Plaintext
|
import { findWizard } from 'wizard/models/wizard';
|
||
|
|
||
|
export default Ember.Route.extend({
|
||
|
model() {
|
||
|
return findWizard();
|
||
|
}
|
||
|
});
|