mirror of
https://github.com/silvanocerza/github-gitless-sync.git
synced 2026-07-22 12:10:28 +00:00
Add setting to track first start
This commit is contained in:
parent
6aeecdbd73
commit
e5896efc9e
1 changed files with 2 additions and 0 deletions
|
|
@ -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: "",
|
||||
|
|
|
|||
Loading…
Reference in a new issue