For the complete documentation index, see llms.txt. This page is also available as Markdown.

Enable or Disable Feature Requests

API reference for controlling feature requests in Luciq. Programmatically enable or disable the feature requests feature for different user segments.

You can completely prevent any feature request-related features from displaying by disabling them using the API below.

//Enable
FeatureRequests.enabled = true

//Disable
FeatureRequests.enabled = false
//Enable
LCQFeatureRequests.enabled = YES;

//Disable
LCQFeatureRequests.enabled = NO;
//Enable
FeatureRequests.setState(Feature.State.ENABLED);

//Disable
FeatureRequests.setState(Feature.State.DISABLED);
//Enable
FeatureRequests.setState(Feature.State.ENABLED)

//Disable
FeatureRequests.setState(Feature.State.DISABLED)
//Enable
FeatureRequests.setEnabled(true);

//Disable
FeatureRequests.setEnabled(false);

Last updated