2017-02-13 15:07:18 -08:00
|
|
|
import Ember from 'ember';
|
|
|
|
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
|
|
|
|
|
|
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
2017-04-27 00:57:29 -07:00
|
|
|
model() {
|
|
|
|
// Static list of content for the index route featureCard links
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
title: 'Browse',
|
|
|
|
route: 'browse',
|
|
|
|
description: "Don't know where to start? Explore by categories."
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Script Finder',
|
|
|
|
route: 'scripts',
|
|
|
|
description: 'Want to search for a script, chain name or job name? Explore Script Finder.'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Metadata Dashboard',
|
|
|
|
route: 'metadata',
|
|
|
|
description: 'Explore Metadata Dashboard'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Schema History',
|
|
|
|
route: 'schemahistory',
|
|
|
|
description: 'Explore Schema History'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'IDPC',
|
|
|
|
route: 'idpc',
|
|
|
|
description: 'Explore IDPC'
|
|
|
|
}
|
|
|
|
];
|
2017-02-13 15:07:18 -08:00
|
|
|
}
|
|
|
|
});
|