mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-03 15:54:18 +00:00
feat(password-recovery): Add password recovery with secret question or secondary email
This commit is contained in:
@@ -33,6 +33,14 @@ extern NSString *SOGoWeekStartJanuary1;
|
||||
extern NSString *SOGoWeekStartFirst4DayWeek;
|
||||
extern NSString *SOGoWeekStartFirstFullWeek;
|
||||
|
||||
extern NSString *SOGoPasswordRecoveryDisabled;
|
||||
extern NSString *SOGoPasswordRecoveryQuestion;
|
||||
extern NSString *SOGoPasswordRecoveryQuestion1;
|
||||
extern NSString *SOGoPasswordRecoveryQuestion2;
|
||||
extern NSString *SOGoPasswordRecoveryQuestion3;
|
||||
extern NSString *SOGoPasswordRecoverySecondaryEmail;
|
||||
|
||||
|
||||
@interface SOGoUserDefaults : SOGoDefaultsSource
|
||||
{
|
||||
NSString *userLanguage;
|
||||
@@ -236,6 +244,16 @@ extern NSString *SOGoWeekStartFirstFullWeek;
|
||||
- (void) setContactsCategories: (NSArray *) newValues;
|
||||
- (NSArray *) contactsCategories;
|
||||
|
||||
/* Password recovery */
|
||||
- (void) setPasswordRecoveryMode: (NSString *) newValue;
|
||||
- (NSString *) passwordRecoveryMode;
|
||||
- (void) setPasswordRecoveryQuestion: (NSString *) newValue;
|
||||
- (NSString *) passwordRecoveryQuestion;
|
||||
- (void) setPasswordRecoveryQuestionAnswer: (NSString *) newValue;
|
||||
- (NSString *) passwordRecoveryQuestionAnswer;
|
||||
- (void) setPasswordRecoverySecondaryEmail: (NSString *) newValue;
|
||||
- (NSString *) passwordRecoverySecondaryEmail;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* SOGOUSERDEFAULTS_H */
|
||||
|
||||
Reference in New Issue
Block a user