summary refs log tree commit diff
path: root/src/connections/GitHub/GitHubSettings.ts
blob: 1b4070d23a8ee7868391f1b12b0056e1eafbd860 (plain) (blame)
1
2
3
4
5
export class GitHubSettings {
	enabled: boolean = false;
	clientId: string | null = null;
	clientSecret: string | null = null;
}