1
0

Fixed replace directive

This commit is contained in:
kolaente
2019-05-24 11:57:18 +02:00
parent 3356a691f7
commit a7bbaf7c5f
10 changed files with 29 additions and 26 deletions

View File

@ -176,6 +176,18 @@ The default storage used (if none is explicitly set) is the `data.FileStorage` w
The resources can be of two types: collection and non-collection. A collection resource is basically a resource that has children resources, but does not have any data content. A non-collection resource is a resource that does not have children, but has data. In the case of a file storage, collections correspond to directories and non-collection to plain files. The data of a caldav resource is all the info that shows up in the calendar client, in the [iCalendar](https://en.wikipedia.org/wiki/ICalendar) format.
### Configuration
You can set the caldav types your storage engine supports like so:
```go
caldav.SetupSupportedComponents([]string{lib.VCALENDAR, lib.VEVENT})
```
The default is `lib.VCALENDAR` and `lib.VEVENT`.
`caldav-go` will report these supported types to the client.
### Features
Please check the **CHANGELOG** to see specific features that are currently implemented.