12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //
- // OCCapabilities.m
- // ownCloud iOS library
- //
- // Created by Gonzalo Gonzalez on 4/11/15.
- // Copyright © 2015 ownCloud. All rights reserved.
- //
- #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 = @"";
-
- self.coreWebDavRoot = @"remote.php/webdav";
- }
- return self;
- }
- @end
|