Move services to public (#6156)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2024-07-28 14:55:43 +07:00
committed by Andrey Sobolev
parent 9aad4a4561
commit ddecae80dd
578 changed files with 109084 additions and 390 deletions
@@ -0,0 +1,17 @@
<!--
//
// Copyright © 2023 Hardcore Engineering Inc.
//
-->
<script lang="ts">
import { Icon } from '@hcengineering/ui'
import { GithubIntegrationRepository } from '@hcengineering/github'
import github from '../../plugin'
export let value: GithubIntegrationRepository
</script>
<div class="flex-row-center">
<Icon icon={github.icon.GithubRepository} size={'small'} />
<span class="ml-1">{value.name}</span>
</div>