feat(translation): Allow guests to use translations as well

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2023-04-13 09:01:27 +02:00
Родитель 032821d2b5
Коммит e5d0ff0c19
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 74434EFE0D2E2205
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -52,7 +52,7 @@ class TranslationApiController extends \OCP\AppFramework\OCSController {
}
/**
* @NoAdminRequired
* @PublicPage
*/
public function languages(): DataResponse {
return new DataResponse([
@ -62,7 +62,9 @@ class TranslationApiController extends \OCP\AppFramework\OCSController {
}
/**
* @NoAdminRequired
* @PublicPage
* @UserRateThrottle(limit=25, period=120)
* @AnonRateThrottle(limit=10, period=120)
*/
public function translate(string $text, ?string $fromLanguage, string $toLanguage): DataResponse {
try {