83635: Intermediate commit

This commit is contained in:
Kristof De Langhe
2021-10-04 17:53:49 +02:00
committed by Art Lowel
parent 4feccb9989
commit 11bf10cbde
18 changed files with 279 additions and 47 deletions

View File

@@ -0,0 +1,18 @@
import { URLCombiner } from '../core/url-combiner/url-combiner';
import { getRequestCopyModulePath } from '../app-routing-paths';
export function getRequestCopyRoute(token: string) {
return new URLCombiner(getRequestCopyModulePath(), token).toString();
}
export const REQUEST_COPY_DENY_PATH = 'deny';
export function getRequestCopyDenyRoute(token: string) {
return new URLCombiner(getRequestCopyRoute(token), REQUEST_COPY_DENY_PATH).toString();
}
export const REQUEST_COPY_GRANT_PATH = 'grant';
export function getRequestCopyGrantRoute(token: string) {
return new URLCombiner(getRequestCopyRoute(token), REQUEST_COPY_GRANT_PATH).toString();
}