RBAC per class (#10314)

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov
2025-12-18 21:10:29 +05:00
committed by GitHub
parent 67a3fadbac
commit b49722b6bf
20 changed files with 268 additions and 65 deletions
@@ -187,6 +187,8 @@
<IconSettings size={'small'} />
<span><Label label={settings.string.ClassProperties} /></span>
{/if}
{:else if $$slots.header}
<slot name="header" />
{:else}
<div></div>
{/if}
@@ -1,5 +1,4 @@
<!--
// Copyright © 2024 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
@@ -0,0 +1,34 @@
<!--
// Copyright © 2024 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import { Class, ClassPermission, Doc } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Label } from '@hcengineering/ui'
export let value: ClassPermission
export let inline: boolean = false
const client = getClient()
$: _class = client.getModel().findObject(value?.targetClass) as Class<Doc>
</script>
{#if value}
<div class="flex-presenter" class:inline-presenter={inline}>
<Label label={value.label} />
{#if _class}
<Label label={_class.label} />
{/if}
</div>
{/if}