unlock thirdparty

This commit is contained in:
Mushka Nikita 2023-04-20 11:47:39 +03:00
parent b1f869759e
commit d210a968ae
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ import RoomType from "./RoomType";
import PermanentSettings from "./PermanentSettings";
import InputParam from "./Params/InputParam";
// import ThirdPartyStorage from "./ThirdPartyStorage";
import ThirdPartyStorage from "./ThirdPartyStorage";
// import IsPrivateParam from "./IsPrivateParam";
import withLoader from "@docspace/client/src/HOCs/withLoader";
@ -117,8 +117,8 @@ const SetRoomParams = ({
/>
)} */}
{/* //TODO: Uncomment when third-party storages will be stable
{!isEdit && enableThirdParty && (
{/* //TODO: Uncomment when third-party storages will be stable */}
{!isEdit && enableThirdParty && (
<ThirdPartyStorage
t={t}
roomTitle={roomParams.title}
@ -128,7 +128,7 @@ const SetRoomParams = ({
setIsOauthWindowOpen={setIsOauthWindowOpen}
isDisabled={isDisabled}
/>
)} */}
)}
<div>
<Text fontWeight={600} className="icon-editor_text">
{t("Icon")}

View File

@ -99,10 +99,10 @@ export const FileType = Object.freeze({
* @readonly
*/
export const RoomsType = Object.freeze({
//FillingFormsRoom: 1, //TODO: Restore when certs will be done
// FillingFormsRoom: 1, //TODO: Restore when certs will be done
EditingRoom: 2,
//ReviewRoom: 3, //TODO: Restore when certs will be done
//ReadOnlyRoom: 4, //TODO: Restore when certs will be done
// ReviewRoom: 3, //TODO: Restore when certs will be done
// ReadOnlyRoom: 4, //TODO: Restore when certs will be done
CustomRoom: 5,
});