mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	Remove invite only padlocks feature flag
Fixes https://github.com/vector-im/riot-web/issues/13366 Only known issue on this is https://github.com/vector-im/riot-web/issues/12148 This has been pre-approved by Product.
This commit is contained in:
		
							parent
							
								
									7b9c46a5a9
								
							
						
					
					
						commit
						353810ce63
					
				@ -17,7 +17,6 @@ limitations under the License.
 | 
				
			|||||||
import React from 'react';
 | 
					import React from 'react';
 | 
				
			||||||
import { _t } from '../../../languageHandler';
 | 
					import { _t } from '../../../languageHandler';
 | 
				
			||||||
import * as sdk from '../../../index';
 | 
					import * as sdk from '../../../index';
 | 
				
			||||||
import SettingsStore from '../../../settings/SettingsStore';
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default class InviteOnlyIcon extends React.Component {
 | 
					export default class InviteOnlyIcon extends React.Component {
 | 
				
			||||||
    constructor() {
 | 
					    constructor() {
 | 
				
			||||||
@ -39,10 +38,6 @@ export default class InviteOnlyIcon extends React.Component {
 | 
				
			|||||||
    render() {
 | 
					    render() {
 | 
				
			||||||
        const classes = this.props.collapsedPanel ? "mx_InviteOnlyIcon_small": "mx_InviteOnlyIcon_large";
 | 
					        const classes = this.props.collapsedPanel ? "mx_InviteOnlyIcon_small": "mx_InviteOnlyIcon_large";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (!SettingsStore.isFeatureEnabled("feature_invite_only_padlocks")) {
 | 
					 | 
				
			||||||
            return null;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        const Tooltip = sdk.getComponent("elements.Tooltip");
 | 
					        const Tooltip = sdk.getComponent("elements.Tooltip");
 | 
				
			||||||
        let tooltip;
 | 
					        let tooltip;
 | 
				
			||||||
        if (this.state.hover) {
 | 
					        if (this.state.hover) {
 | 
				
			||||||
 | 
				
			|||||||
@ -401,7 +401,6 @@
 | 
				
			|||||||
    "Support adding custom themes": "Support adding custom themes",
 | 
					    "Support adding custom themes": "Support adding custom themes",
 | 
				
			||||||
    "Enable cross-signing to verify per-user instead of per-session": "Enable cross-signing to verify per-user instead of per-session",
 | 
					    "Enable cross-signing to verify per-user instead of per-session": "Enable cross-signing to verify per-user instead of per-session",
 | 
				
			||||||
    "Show info about bridges in room settings": "Show info about bridges in room settings",
 | 
					    "Show info about bridges in room settings": "Show info about bridges in room settings",
 | 
				
			||||||
    "Show padlocks on invite only rooms": "Show padlocks on invite only rooms",
 | 
					 | 
				
			||||||
    "Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing",
 | 
					    "Enable Emoji suggestions while typing": "Enable Emoji suggestions while typing",
 | 
				
			||||||
    "Use compact timeline layout": "Use compact timeline layout",
 | 
					    "Use compact timeline layout": "Use compact timeline layout",
 | 
				
			||||||
    "Show a placeholder for removed messages": "Show a placeholder for removed messages",
 | 
					    "Show a placeholder for removed messages": "Show a placeholder for removed messages",
 | 
				
			||||||
 | 
				
			|||||||
@ -164,12 +164,6 @@ export const SETTINGS = {
 | 
				
			|||||||
        displayName: _td("Show info about bridges in room settings"),
 | 
					        displayName: _td("Show info about bridges in room settings"),
 | 
				
			||||||
        default: false,
 | 
					        default: false,
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "feature_invite_only_padlocks": {
 | 
					 | 
				
			||||||
        isFeature: true,
 | 
					 | 
				
			||||||
        supportedLevels: LEVELS_FEATURE,
 | 
					 | 
				
			||||||
        displayName: _td("Show padlocks on invite only rooms"),
 | 
					 | 
				
			||||||
        default: true,
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    "MessageComposerInput.suggestEmoji": {
 | 
					    "MessageComposerInput.suggestEmoji": {
 | 
				
			||||||
        supportedLevels: LEVELS_ACCOUNT_SETTINGS,
 | 
					        supportedLevels: LEVELS_ACCOUNT_SETTINGS,
 | 
				
			||||||
        displayName: _td('Enable Emoji suggestions while typing'),
 | 
					        displayName: _td('Enable Emoji suggestions while typing'),
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user