2019-08-31 20:51:14 -07:00

10 lines
282 B
TypeScript

import { IFunctionRouteHandler } from '@datahub/utils/types/vendor/ember-cli-mirage-deprecated';
const getDatasetOwners = function(this: IFunctionRouteHandler, { owners }: { owners: any }) {
return {
owners: this.serialize(owners.all())
};
};
export { getDatasetOwners };