1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #import "OCCapabilities.h"
- @implementation OCCapabilities
- - (id)init {
- self = [super init];
- if (self) {
- self.versionMajor = 0;
- self.versionMinor = 0;
- self.versionMicro = 0;
- self.versionString = @"";
- self.versionEdition = @"";
- self.corePollInterval = 0;
-
- self.themingBackground = @"";
- self.themingColor = @"";
- self.themingColorElement = @"";
- self.themingColorText = @"";
- self.themingLogo = @"";
- self.themingName = @"";
- self.themingSlogan = @"";
- self.themingUrl = @"";
-
- self.externalSiteV1 = @"";
-
- self.endToEndEncryptionVersion = @"";
-
- self.notificationOcsEndpoints = @"";
- self.notificationPush = @"";
-
- self.spreedFeatures = @"";
-
- self.richdocumentsMimetypes = [NSArray new];
-
- self.HCShopUrl = @"";
-
- self.paginationEndponit = @"";
- }
- return self;
- }
- @end
|