mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-22 08:59:39 +00:00
36 lines
958 B
JavaScript
36 lines
958 B
JavaScript
import Ember from 'ember';
|
|
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
|
|
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
|
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'
|
|
}
|
|
];
|
|
}
|
|
});
|