add feature flag

pull/1770/head
Brice-W 4 years ago
parent 03891a9438
commit ff7f201e04

@ -56,6 +56,7 @@ window.lokiFeatureFlags = {
useFileOnionRequests: true, useFileOnionRequests: true,
useFileOnionRequestsV2: true, // more compact encoding of files in response useFileOnionRequestsV2: true, // more compact encoding of files in response
padOutgoingAttachments: true, padOutgoingAttachments: true,
enablePinConversations: false,
}; };
if (typeof process.env.NODE_ENV === 'string' && process.env.NODE_ENV.includes('test-integration')) { if (typeof process.env.NODE_ENV === 'string' && process.env.NODE_ENV.includes('test-integration')) {

@ -46,9 +46,10 @@ export const ConversationListItemContextMenu = (props: PropsContextConversationI
const isGroup = type === 'group'; const isGroup = type === 'group';
const isMessagesSection = useSelector(getFocusedSection) === SectionType.Message; const isMessagesSection = useSelector(getFocusedSection) === SectionType.Message;
const pinMenuItem = isMessagesSection ? ( const pinMenuItem =
<MenuItemPinConversation conversationId={conversationId} /> isMessagesSection && window.lokiFeatureFlags.enablePinConversations ? (
) : null; <MenuItemPinConversation conversationId={conversationId} />
) : null;
return ( return (
<> <>

1
ts/window.d.ts vendored

@ -48,6 +48,7 @@ declare global {
useFileOnionRequests: boolean; useFileOnionRequests: boolean;
useFileOnionRequestsV2: boolean; useFileOnionRequestsV2: boolean;
padOutgoingAttachments: boolean; padOutgoingAttachments: boolean;
enablePinConversations: boolean;
}; };
lokiSnodeAPI: LokiSnodeAPI; lokiSnodeAPI: LokiSnodeAPI;
onLogin: any; onLogin: any;

Loading…
Cancel
Save