Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
signalapp
GitHub Repository: signalapp/Signal-iOS
Path: blob/main/Signal/src/ViewControllers/DebugUI/DebugUIPrompts.swift
1 views
//
// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//

import SignalServiceKit
import SignalUI

#if USE_DEBUG_UI

class DebugUIPrompts: DebugUIPage {
    let name = "Prompts"

    func section(thread: TSThread?) -> OWSTableSection? {
        let db = DependenciesBridge.shared.db
        let inactiveLinkedDeviceFinder = DependenciesBridge.shared.inactiveLinkedDeviceFinder
        let keyTransparencyStore = KeyTransparencyStore()
        let usernameEducationManager = DependenciesBridge.shared.usernameEducationManager

        var items = [OWSTableItem]()

        items += [
            OWSTableItem(title: "Reenable KT first-time education", actionBlock: {
                db.write { tx in
                    keyTransparencyStore.setShouldShowFirstTimeEducation(true, tx: tx)
                }
            }),

            OWSTableItem(title: "Reenable disabled inactive linked device reminder megaphones", actionBlock: {
                db.write { tx in
                    inactiveLinkedDeviceFinder.reenablePermanentlyDisabledFinders(tx: tx)
                }
            }),

            OWSTableItem(title: "Enable username education prompt", actionBlock: {
                db.write { tx in
                    usernameEducationManager.setShouldShowUsernameEducation(true, tx: tx)
                }
            }),
            OWSTableItem(title: "Enable username link tooltip", actionBlock: {
                db.write { tx in
                    usernameEducationManager.setShouldShowUsernameLinkTooltip(true, tx: tx)
                }
            }),

            OWSTableItem(title: "Mark flip cam button tooltip as unread", actionBlock: {
                let flipCamTooltipManager = FlipCameraTooltipManager(db: db)
                flipCamTooltipManager.markTooltipAsUnread()
            }),
        ]
        return OWSTableSection(title: name, items: items)
    }
}

#endif