mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 21:36:08 +00:00
11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import Route from '@ember/routing/route';
|
|
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
|
|
|
|
/**
|
|
* Defines the top-level route class for application Lists
|
|
* @export
|
|
* @class Lists
|
|
* @extends {Route.extend(AuthenticatedRouteMixin)}
|
|
*/
|
|
export default class Lists extends Route.extend(AuthenticatedRouteMixin) {}
|