01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
25 lines
745 B
JavaScript
25 lines
745 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { getCSPNonce } from '@nextcloud/auth'
|
|
import { t } from '@nextcloud/l10n'
|
|
import { requestRoomSelection } from './utils/requestRoomSelection.js'
|
|
|
|
__webpack_nonce__ = getCSPNonce()
|
|
// eslint-disable-next-line
|
|
__webpack_public_path__ = OC.linkTo('spreed', 'js/')
|
|
|
|
window.OCP.Collaboration.registerType('room', {
|
|
action: async () => {
|
|
const conversation = await requestRoomSelection('spreed-room-select', {})
|
|
if (!conversation) {
|
|
throw new Error('User cancelled resource selection')
|
|
}
|
|
return conversation.token
|
|
},
|
|
typeString: t('spreed', 'Link to a conversation'),
|
|
typeIconClass: 'icon-talk',
|
|
})
|