OCCapabilities.m 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // OCCapabilities.m
  3. // ownCloud iOS library
  4. //
  5. // Created by Gonzalo Gonzalez on 4/11/15.
  6. // Copyright © 2015 ownCloud. All rights reserved.
  7. //
  8. #import "OCCapabilities.h"
  9. @implementation OCCapabilities
  10. - (id)init {
  11. self = [super init];
  12. if (self) {
  13. self.versionMajor = 0;
  14. self.versionMinor = 0;
  15. self.versionMicro = 0;
  16. self.versionString = @"";
  17. self.versionEdition = @"";
  18. self.corePollInterval = 0;
  19. self.themingBackground = @"";
  20. self.themingColor = @"";
  21. self.themingColorElement = @"";
  22. self.themingColorText = @"";
  23. self.themingLogo = @"";
  24. self.themingName = @"";
  25. self.themingSlogan = @"";
  26. self.themingUrl = @"";
  27. self.externalSiteV1 = @"";
  28. self.endToEndEncryptionVersion = @"";
  29. self.notificationOcsEndpoints = @"";
  30. self.notificationPush = @"";
  31. self.spreedFeatures = @"";
  32. self.richdocumentsMimetypes = [NSArray new];
  33. self.HCShopUrl = @"";
  34. self.paginationEndponit = @"";
  35. self.coreWebDavRoot = @"remote.php/webdav";
  36. }
  37. return self;
  38. }
  39. @end