mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-25 17:15:09 +00:00
8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import { IFunctionRouteHandler } from 'wherehows-web/typings/ember-cli-mirage';
|
|
|
|
const getDatasetDownstreams = function(this: IFunctionRouteHandler, { datasetViews }: { datasetViews: any }) {
|
|
return this.serialize(datasetViews.all());
|
|
};
|
|
|
|
export { getDatasetDownstreams };
|