Added forward query component to short URL form

This commit is contained in:
Alejandro Celaya
2021-10-13 22:50:48 +02:00
parent eaa6efe803
commit 9e6907deb4
5 changed files with 60 additions and 34 deletions

View File

@@ -9,6 +9,7 @@ export interface EditShortUrlData {
maxVisits?: number | null;
validateUrl?: boolean;
crawlable?: boolean;
forwardQuery?: boolean;
}
export interface ShortUrlData extends EditShortUrlData {
@@ -30,6 +31,7 @@ export interface ShortUrl {
domain: string | null;
title?: string | null;
crawlable?: boolean;
forwardQuery?: boolean;
}
export interface ShortUrlMeta {