diff --git a/README.md b/README.md index 176c48ebcf6df0a286beec256c4326765fa4765b..6ea880345a19be9ee94c1ae370534e83908ee616 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Current Sib App capabilities: | Base | `djangoldp_account`, `djangoldp_profile`, `djangoldp_notification`, `oidc_provider` | `users` | | Circles | `djangoldp_circle` | `circles` | | Projects | `djangoldp_project` | `projects`, `customers` | -| Events | `djangoldp_event` | `events` | +| Events | `djangoldp_event` | `events`, `typeevents`, `uploads` | Federated Sib App needs to use `config.sample.federated.json` example. diff --git a/config.sample.federated.json b/config.sample.federated.json index 9297558ab1bf2a33d2d18ec65bf4537a7f0a2779..a17abca78ebfb03ed2170d5e94e456ed7b56e077 100644 --- a/config.sample.federated.json +++ b/config.sample.federated.json @@ -12,14 +12,18 @@ "projects": "http://localhost:8000/projects/", "customers": "http://localhost:8000/customers/", "events": "http://localhost:8000/events/", - "users": "http://localhost:8000/users/" + "typeevents": "http://localhost:8000/typeevents/", + "users": "http://localhost:8000/users/", + "uploads": "http://localhost:8000/upload/" }, "post": { "circles": "http://localhost:8000/circles/", "projects": "http://localhost:8000/projects/", "customers": "http://localhost:8000/customers/", "events": "http://localhost:8000/events/", - "users": "http://localhost:8000/users/" + "typeevents": "http://localhost:8000/typeevents/", + "users": "http://localhost:8000/users/", + "uploads": "http://localhost:8000/upload/" } } } diff --git a/config.sample.json b/config.sample.json index 76cff7068c51b194dfce4aaa7708a7a412fefdca..0197c371bd0878f260dc52757ecdfadd99eed294 100644 --- a/config.sample.json +++ b/config.sample.json @@ -11,6 +11,8 @@ "projects": "http://localhost:8000/projects/", "customers": "http://localhost:8000/customers/", "events": "http://localhost:8000/events/", - "users": "http://localhost:8000/users/" + "typeevents": "http://localhost:8000/typeevents/", + "users": "http://localhost:8000/users/", + "uploads": "http://localhost:8000/upload/" } }