This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/frontend/utils/routeHelpers.js
Tom Moor e3b2fcf8c9 Improves
2017-05-26 00:04:13 -07:00

15 lines
238 B
JavaScript

// @flow
export function homeUrl() {
return '/dashboard';
}
export function newCollectionUrl() {
return '/collections/new';
}
export function searchUrl(query: string) {
if (query) return `/search/${query}`;
return `/search`;
}