Git Sources
{#if $session.isAdmin}
{/if}
{#if !sources || sources.length === 0}
No git sources found
{:else}
{#each sources as source}
{source.name}
{#if (source.type === 'gitlab' && !source.gitlabAppId) || (source.type === 'github' && !source.githubAppId && !source.githubApp?.installationId)}
Configuration missing
{:else}
{source.htmlUrl}
{/if}
{/each}
{/if}