Added new settings to determine how to search on tags during short URL creation, and how many suggestions to display

This commit is contained in:
Alejandro Celaya
2021-08-15 10:55:58 +02:00
parent 590393dcfd
commit 9f02bc6496
4 changed files with 25 additions and 4 deletions

View File

@@ -17,8 +17,12 @@ interface RealTimeUpdatesSettings {
interval?: number;
}
type TagFilteringMode = 'startsWith' | 'includes';
export interface ShortUrlCreationSettings {
validateUrls: boolean;
tagFilteringMode?: TagFilteringMode;
maxTagSuggestions?: number;
}
export interface UiSettings {