예제 #1
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (OnboardingStatusHelper.Status == OnboardingStatus.OnlyMainOnboardingCompleted &&
         !LocalPreferencesHelper.TermsNotificationWasShown)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }
예제 #2
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (ConsentsHelper.IsNotFullyOnboarded &&
         (SystemTime.Now() - LocalPreferencesHelper.LastDateTimeTermsNotificationWasShown).Days > 0)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }
예제 #3
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (ConsentsHelper.IsNotFullyOnboarded &&
         !LocalPreferencesHelper.TermsNotificationWasShown)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }