ConsoleView - Hide `Get Pulse Pro` menu option
Add the ability to hide the Get Pulse Pro menu option inside the ConsoleView
Hey, you can hide it by setting UserDefaults.standard.bool(forKey: "pulse-disable-support-prompts"). It's worth adding it to the public AppSettings class too.
@kean could we get an option to hide the Report Issue menu item too? We want these tools available for our builds distributed internally but don't want options that link out of the app.
Thank you for the great library. Mr. @kean
Works for me.
UserDefaults.standard.set(true, forKey: "pulse-disable-support-prompts")
Can we also add below options if possible? This features not required in internal distribution within team. If you are busy, I can create PR if you're positive. Thank you in advance.
UserDefaults.standard.set(true, forKey: "pulse-disable-report-issue-prompts")
UserDefaults.standard.set(true, forKey: "pulse-disable-settings-prompts")
I wouldn't mind adding these options, and I would appreciate if you could open a PR that adds them.
Hello @kean ,
Thank you for positive & quick reply!
Here is PR https://github.com/kean/Pulse/pull/331
Loking forward to your approval, Mr. @kean !