mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-29 09:52:40 +00:00
7 lines
278 B
TypeScript
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);
|
|
};
|