diff --git a/config.sample.federated.json b/config.sample.federated.json index 9297558..a17abca 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 76cff70..0197c37 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/" } } diff --git a/src/page-events.pug b/src/page-events.pug index f92f8d8..2d1fa39 100644 --- a/src/page-events.pug +++ b/src/page-events.pug @@ -1,2 +1,6 @@ .views-container - sib-event(data-src=`${endpoints.events || (endpoints.get && endpoints.get.events)}`) \ No newline at end of file + sib-event( + data-src=`${endpoints.events || (endpoints.get && endpoints.get.events)}` + range-typeevents=`${endpoints.typeevents || (endpoints.get && endpoints.get.typeevents)}` + upload-src=`${endpoints.uploads || (endpoints.get && endpoints.get.uploads)}` + ) \ No newline at end of file