blob: 43daa262659746324363b5fc4358fb1fdd7cda9d [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {InjectionToken} from "@angular/core";
import * as config from "../../../../app.config.json";
import {IAppConfiguration} from "../configuration";
/**
* Injection token for the external route to the main portal.
*/
export const HELP_ROUTE = new InjectionToken<string>("External route user documentation", {
providedIn: "root",
factory: () => (config as IAppConfiguration).routes.userDocu
});