Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Remove option to select protocol in create group - WPB-10442 #2148

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
Open
2 changes: 0 additions & 2 deletions wire-ios-utilities/Resources/WireUtilities-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
<string>Copyright © 2015 Wire. All rights reserved.</string>
<key>MLSEnabled</key>
<string>${MLS_ENABLED}</string>
<key>CreateMLSGroupEnabled</key>
<string>${CREATE_MLS_GROUP_ENABLED}</string>
<key>ProteusByCoreCryptoEnabled</key>
<string>${PROTEUS_BY_CORECRYPTO_ENABLED}</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion wire-ios-utilities/Source/DeveloperFlag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public enum DeveloperFlag: String, CaseIterable {
case .enableMLSSupport:
return "MLSEnabled"
case .showCreateMLSGroupToggle:
return "CreateMLSGroupEnabled"
return nil
samwyndham marked this conversation as resolved.
Show resolved Hide resolved
case .proteusViaCoreCrypto:
return "ProteusByCoreCryptoEnabled"
case .forceDatabaseLoadingFailure:
Expand Down
2 changes: 0 additions & 2 deletions wire-ios/Configuration/Developer-Flags.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,3 @@

PROTEUS_BY_CORECRYPTO_ENABLED=1
MLS_ENABLED=0
// Shows the toggle to choose MLS as messaging protocol when creating a group
CREATE_MLS_GROUP_ENABLED=0
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ final class ConversationCreationController: UIViewController {

private lazy var encryptionProtocolSection = {
let section = ConversationEncryptionProtocolSectionController(values: values)
section.isHidden = true
KaterinaWire marked this conversation as resolved.
Show resolved Hide resolved
section.tapAction = { sender in
self.presentEncryptionProtocolPicker(sender: sender) { [weak self] encryptionProtocol in
self?.values.encryptionProtocol = encryptionProtocol
Expand Down
Loading