Fixed replace directive
This commit is contained in:
12
vendor/github.com/samedi/caldav-go/README.md
generated
vendored
12
vendor/github.com/samedi/caldav-go/README.md
generated
vendored
@ -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.
|
||||
|
Reference in New Issue
Block a user