Add setting to track first start

This commit is contained in:
Silvano Cerza 2025-01-22 13:13:31 +01:00
parent 6aeecdbd73
commit e5896efc9e

View file

@ -1,4 +1,5 @@
export interface GitHubSyncSettings {
firstStart: boolean;
githubToken: string;
githubOwner: string;
githubRepo: string;
@ -14,6 +15,7 @@ export interface GitHubSyncSettings {
}
export const DEFAULT_SETTINGS: GitHubSyncSettings = {
firstStart: true,
githubToken: "",
githubOwner: "",
githubRepo: "",