Advanced Configuration

GDPR Compliant

Homa Belly includes a GDPR module implementing all the required workflow to ask final users for their consent. Please, follow the instructions you will find here.

If you are using a fully custom GDPR implementation workflow, Homa Belly does include some methods you may find useful to inform about your final users' choices:


/// <summary>
/// Specifies if the user asserted being above the required age
/// </summary>
/// <param name="consent">true if user accepted, false otherwise</param>
void SetUserIsAboveRequiredAge(bool consent);

/// <summary>
/// Specifies if the user accepted privacy policy and terms and conditions
/// </summary>
/// <param name="consent">true if user accepted, false otherwise</param>
void SetTermsAndConditionsAcceptance(bool consent);

/// <summary>
/// Specifies if the user granted consent for analytics tracking
/// </summary>
/// <param name="consent">true if user accepted, false otherwise</param>
void SetAnalyticsTrackingConsentGranted(bool consent);

/// <summary>
/// Specifies if the user granted consent for showing tailored ads
/// </summary>
/// <param name="consent">true if user accepted, false otherwise</param>
void SetTailoredAdsConsentGranted(bool consent);