Client:Src:Store: add new fields in changeDocumentServiceLocation method

This commit is contained in:
Darya Umrikhina 2024-06-18 22:10:40 +07:00
parent 3b18a69ced
commit d0dda0a383

View File

@ -239,9 +239,19 @@ class FilesSettingsStore {
getDocumentServiceLocation = () => api.files.getDocumentServiceLocation();
changeDocumentServiceLocation = (docServiceUrl, internalUrl, portalUrl) =>
changeDocumentServiceLocation = (
docServiceUrl,
jwtSecret,
isDisabledCertificat,
jwtHeader,
internalUrl,
portalUrl,
) =>
api.files.changeDocumentServiceLocation(
docServiceUrl,
jwtSecret,
isDisabledCertificat,
jwtHeader,
internalUrl,
portalUrl,
);