diff --git a/client/datasync-client/src/DataManager.ts b/client/datasync-client/src/DataManager.ts index e3638e4..dc76e57 100644 --- a/client/datasync-client/src/DataManager.ts +++ b/client/datasync-client/src/DataManager.ts @@ -6,8 +6,8 @@ import * as _ from 'lodash'; /** * Wrapper class around sync to allow easier operations on a single data set. * - * Sor more information on the sync client API, - * See https://tinyurl.com/yc5q3rj3 + * For more information on the sync client API + * see https://tinyurl.com/yc5q3rj3 */ export class DataManager { public datasetId: string; diff --git a/cloud/datasync/README.md b/cloud/datasync/README.md index 3fe583e..c6a9739 100644 --- a/cloud/datasync/README.md +++ b/cloud/datasync/README.md @@ -7,7 +7,7 @@ This behavior can be changed by providing custom handlers. For advanced usage see [FeedHenry Sync documentation](https://github.com/feedhenry/fh-sync/tree/master/docs). -> **Note**: Cloud service is utilized by one of the sync clients. See [datasync-js](../client/datasync) +> **Note**: Cloud service is utilized by one of the sync clients. See [datasync-js](https://github.com/feedhenry-raincatcher/raincatcher-core/tree/master/client/datasync-client) ## Quick start diff --git a/cloud/passportauth/README.md b/cloud/passportauth/README.md index 39e2383..33f59d4 100644 --- a/cloud/passportauth/README.md +++ b/cloud/passportauth/README.md @@ -34,4 +34,4 @@ app.get('/secureEndpoint', authService.protect('admin'), (req: express.Request, }); ``` -To view a sample implementation, see [./example](./example/index.ts) sample example +See [./example](https://github.com/feedhenry-raincatcher/raincatcher-core/tree/master/cloud/passportauth/example) for a sample implementation diff --git a/cloud/wfm-rest-api/README.md b/cloud/wfm-rest-api/README.md index 2aff61d..1f28a35 100644 --- a/cloud/wfm-rest-api/README.md +++ b/cloud/wfm-rest-api/README.md @@ -26,7 +26,7 @@ Api requires mongodb connection that needs to be setup as separate step ```typescript api.setDb(db); ``` -See demo application integration or [example application](./example) for more details. +See demo application integration or [example application](https://github.com/feedhenry-raincatcher/raincatcher-core/tree/master/cloud/wfm-rest-api/example) for more details. ### Custom database integrations diff --git a/cloud/wfm-rest-api/src/impl/ApiController.ts b/cloud/wfm-rest-api/src/impl/ApiController.ts index 14e707c..1a6de4d 100644 --- a/cloud/wfm-rest-api/src/impl/ApiController.ts +++ b/cloud/wfm-rest-api/src/impl/ApiController.ts @@ -16,7 +16,7 @@ export class ApiController { /** * Handler for list method - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public listHandler(req: Request) { getLogger().debug('Api list method called', { body: req.query }); @@ -38,7 +38,7 @@ export class ApiController { /** * Handler for get method - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public getHandler(req: Request) { getLogger().debug('Api get method called', { params: req.params }); @@ -53,7 +53,7 @@ export class ApiController { /** * Handler for create method - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public postHandler(req: Request) { getLogger().debug('Api create method called', { body: req.body }); @@ -68,7 +68,7 @@ export class ApiController { /** * Delete handler - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public deleteHandler(req: Request) { getLogger().debug('Api delete method called', { params: req.params }); @@ -85,7 +85,7 @@ export class ApiController { /** * Update handler - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public putHandler(req: Request) { getLogger().debug('Api update method called', { body: req.body }); @@ -109,7 +109,7 @@ export class ApiController { /** * Handler for list by filter method - * Can be reused by developers that wish to mount handler directly on router + * can be reused by developers that wish to mount handler directly on router */ public listByFilterHandler(req: Request) { getLogger().debug('Api list by filter method called', { query: req.query }); diff --git a/cloud/wfm-user/README.md b/cloud/wfm-user/README.md index 4458537..cee874b 100644 --- a/cloud/wfm-user/README.md +++ b/cloud/wfm-user/README.md @@ -44,7 +44,7 @@ Missing id `{status: 400 , code: 'InvalidID'}` In order for module to be able to fetch user data any implementations need to implement user repository class. -See demo application integration or [example application](./example) for more details. +See demo application integration or [example application](https://github.com/feedhenry-raincatcher/raincatcher-core/tree/master/cloud/wfm-user/example) for more details. ## Relation to security module