mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
39 lines
1.7 KiB
Objective-C
39 lines
1.7 KiB
Objective-C
#import "TGAccountSettings.h"
|
|
|
|
@implementation TGAccountSettings
|
|
|
|
- (instancetype)initWithDefaultValues
|
|
{
|
|
return [self initWithNotificationSettings:[[TGNotificationPrivacyAccountSetting alloc] initWithDefaultValues] groupsAndChannelsSettings:[[TGNotificationPrivacyAccountSetting alloc] initWithDefaultValues] accountTTLSetting:[[TGAccountTTLSetting alloc] initWithDefaultValues]];
|
|
}
|
|
|
|
- (instancetype)initWithNotificationSettings:(TGNotificationPrivacyAccountSetting *)notificationSettings groupsAndChannelsSettings:(TGNotificationPrivacyAccountSetting *)groupsAndChannelsSettings accountTTLSetting:(TGAccountTTLSetting *)accountTTLSetting
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_notificationSettings = notificationSettings;
|
|
_groupsAndChannelsSettings = groupsAndChannelsSettings;
|
|
_accountTTLSetting = accountTTLSetting;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)aDecoder
|
|
{
|
|
TGNotificationPrivacyAccountSetting *groupsAndChannelsSettings = [aDecoder decodeObjectForKey:@"groupsAndChannelsSettings"];
|
|
if (groupsAndChannelsSettings == nil) {
|
|
groupsAndChannelsSettings = [[TGNotificationPrivacyAccountSetting alloc] initWithDefaultValues];
|
|
}
|
|
return [self initWithNotificationSettings:[aDecoder decodeObjectForKey:@"notificationSettings"] groupsAndChannelsSettings:groupsAndChannelsSettings accountTTLSetting:[aDecoder decodeObjectForKey:@"accountTTLSetting"]];
|
|
}
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)aCoder
|
|
{
|
|
[aCoder encodeObject:_notificationSettings forKey:@"notificationSettings"];
|
|
[aCoder encodeObject:_groupsAndChannelsSettings forKey:@"groupsAndChannelsSettings"];
|
|
[aCoder encodeObject:_accountTTLSetting forKey:@"accountTTLSetting"];
|
|
}
|
|
|
|
@end
|