mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-26 14:22:23 +02:00
* UBERF-13433: Migrate from channels to threads Signed-off-by: Artem Savchenko <armisav@gmail.com> * UBERF-13433: Migrate parent info Signed-off-by: Artem Savchenko <armisav@gmail.com> * UBERF-13433: Use client traverse Signed-off-by: Artem Savchenko <armisav@gmail.com> * UBERF-13433: Add tests Signed-off-by: Artem Savchenko <armisav@gmail.com> * UBERF-13433: Support Jest in model packages Signed-off-by: Artem Savchenko <armisav@gmail.com> * Revert "UBERF-13433: Support Jest in model packages" This reverts commit415f5916c9. Signed-off-by: Artem Savchenko <armisav@gmail.com> * Revert "UBERF-13433: Add tests" This reverts commit38d7fcd794. Signed-off-by: Artem Savchenko <armisav@gmail.com> --------- Signed-off-by: Artem Savchenko <armisav@gmail.com>
36 lines
1006 B
TypeScript
36 lines
1006 B
TypeScript
//
|
|
// Copyright © 2025 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.
|
|
//
|
|
|
|
import type { Ref } from '@hcengineering/core'
|
|
import { Asset, IntlString, type Plugin, plugin } from '@hcengineering/platform'
|
|
import type { Tag } from '@hcengineering/card'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const mailId = 'mail' as Plugin
|
|
|
|
export default plugin(mailId, {
|
|
tag: {
|
|
MailThread: '' as Ref<Tag>
|
|
},
|
|
string: {
|
|
MailTag: '' as IntlString
|
|
},
|
|
icon: {
|
|
Mail: '' as Asset
|
|
}
|
|
})
|