Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge 9a9a617 into 35809c4
Browse files Browse the repository at this point in the history
  • Loading branch information
austincunningham committed Sep 20, 2017
2 parents 35809c4 + 9a9a617 commit afab320
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions client/datasync-client/src/DataManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion cloud/datasync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cloud/passportauth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion cloud/wfm-rest-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions cloud/wfm-rest-api/src/impl/ApiController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class ApiController<T> {

/**
* 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 });
Expand All @@ -38,7 +38,7 @@ export class ApiController<T> {

/**
* 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 });
Expand All @@ -53,7 +53,7 @@ export class ApiController<T> {

/**
* 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 });
Expand All @@ -68,7 +68,7 @@ export class ApiController<T> {

/**
* 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 });
Expand All @@ -85,7 +85,7 @@ export class ApiController<T> {

/**
* 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 });
Expand All @@ -109,7 +109,7 @@ export class ApiController<T> {

/**
* 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 });
Expand Down
2 changes: 1 addition & 1 deletion cloud/wfm-user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit afab320

Please sign in to comment.