spreed/lib/Exceptions/LiveTranscriptionAppNotEnabledException.php
Daniel Calviño Sánchez 6bfe44f1e3 feat: Add endpoint to enable and disable live transcriptions
The endpoint just forwards the request to the external app
"live_transcription", but using a standard Talk endpoint makes possible
to abstract that from the clients.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2025-08-29 11:33:59 +02:00

12 lines
262 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\Exceptions;
class LiveTranscriptionAppNotEnabledException extends \Exception {
}