mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 11:49:23 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
import { IFunctionRouteHandler } from 'wherehows-web/typings/ember-cli-mirage';
|
|
|
|
export const getDatasetHealth = function(this: IFunctionRouteHandler, { db: healths }: any) {
|
|
return {
|
|
health: this.serialize(healths[0])
|
|
};
|
|
};
|