UBERF-9731 Recorder initial version (#8800)

* UBERF-9731 Recorder initial version

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>

* fix: rush validate issues

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>

---------

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
Alexander Onnikov
2025-05-01 23:46:35 +07:00
committed by GitHub
parent 3c4057ed89
commit 8a9e04b8d4
58 changed files with 1679 additions and 547 deletions
+8 -2
View File
@@ -13,7 +13,7 @@
// limitations under the License.
//
import type { Plugin, Asset } from '@hcengineering/platform'
import type { Plugin, Asset, IntlString } from '@hcengineering/platform'
import { plugin } from '@hcengineering/platform'
import { type ComponentExtensionId } from '@hcengineering/ui'
@@ -27,7 +27,13 @@ export const mediaPlugin = plugin(mediaId, {
},
icon: {
Mic: '' as Asset,
Cam: '' as Asset
Cam: '' as Asset,
MicOff: '' as Asset,
CamOff: '' as Asset
},
string: {
TurnOnMic: '' as IntlString,
TurnOffMic: '' as IntlString
}
})