datahub/wherehows-web/mirage/helpers/browse-platforms.ts
2018-08-23 14:24:15 -07:00

7 lines
278 B
TypeScript

import { IFunctionRouteHandler } from 'wherehows-web/typings/ember-cli-mirage';
import browsePlatforms from 'wherehows-web/mirage/fixtures/browse-platforms';
export const getBrowsePlatforms = function(this: IFunctionRouteHandler) {
return this.serialize(browsePlatforms);
};