The Floating Action Button in the Feed allows users to create threads and send feedback from the App to Pulsate. By default this button is enabled, if you want to disable it all you need to do is call "setNewThreadButtonEnabled(false)". Make sure to call it in the onCreate methd of your Application.

class PulsateDemoApp : Application() {
    override fun onCreate() {
        super.onCreate()
        val pulsateManager = PulsateFactory.getInstance()
        pulsateManager.setNewThreadButtonEnabled(false)
    }
}