Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge current branch with staging #42

Merged
merged 11 commits into from
Dec 17, 2017
Merged

Merge current branch with staging #42

merged 11 commits into from
Dec 17, 2017

Conversation

benfluleck
Copy link
Owner

Merge pull request #41 from benfluleck/feature/153569580/users-should-be-to-sign-in-with-google-authentication

Feature/153569580/users should be to sign in with google authentication

Benny Ogidan and others added 11 commits December 14, 2017 17:04
- Change password form implemented to use old passwords

- Readme refactored and changed

-  Codeclimate yml introduced

- Test refactored to implement current changes with the program
- Read me updated in respect to feedback
- Google authentication installed and working with sign in route
- Google auth removed from sign up from client side
- Read me updated with a link to the Project FAQs
- Notifier reducers implemented
- Implemented spacing between Jsdoc statements
- Implemented reducer for categories to help refactor the bookReducer
- Fix for loading of userList on heroku
- Shortened Google Auth for usernames
- Removed old files inappropriately named
…-be-to-sign-in-with-google-authentication

Feature/153569580/users should be to sign in with google authentication
DELETE_CATEGORY_SUCCESS,
FETCH_CATEGORIES_SUCCESS,
FETCH_CATEGORIES_FAILURE,
} from '../actions/actionType';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "../actions/actionType" import/extensions

GET_USER_FAILURE,
PASSWORD_CHANGED_SUCCESS,
PASSWORD_CHANGED_FAILURE
} from '../actions/actionType';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "../actions/actionType" import/extensions

import {
GET_NOTIFICATIONS_FAILURE,
GET_NOTIFICATIONS_SUCCESS
} from '../actions/actionType';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "../actions/actionType" import/extensions

@@ -1,7 +1,7 @@
import {
UPLOAD_TO_CLOUD_IMAGE_SUCCESS,
UPLOAD_TO_CLOUD_IMAGE_FAILURE
} from '../actions/actiontype';
} from '../actions/actionType';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "../actions/actionType" import/extensions

@@ -4,8 +4,15 @@ import { reducer as notifReducer } from 'redux-notifications';
import userReducer from './userReducers';
import bookReducer from './bookReducers';
import imageReducer from './imageReducers';
import notifierReducer from './notifierReducers';
import categoryReducer from './categoryReducers';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "./categoryReducers" import/extensions

@@ -0,0 +1,17 @@
import React from 'react';
import { Row } from 'react-materialize';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "react-materialize" import/extensions

@@ -0,0 +1,17 @@
import React from 'react';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing file extension for "react" import/extensions

)) : null;
const rows = props.books && props.books.length ?
props.books.map((book, index) => (
<tr key={index}>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do not use Array index in keys react/no-array-index-key

@@ -2,24 +2,33 @@ import React from 'react';
import PropTypes from 'prop-types';
import moment from 'moment';
import { Row } from 'react-materialize';
import MessageforNoBooksHistory from '../messages/dashboardMessages/MessageforNoBooksHistory.jsx';
import MessageforNoBooksHistory
from '../messages/dashboardMessages/MessageforNoBooksHistory.jsx';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unexpected use of file extension "jsx" for "../messages/dashboardMessages/MessageforNoBooksHistory.jsx" import/extensions

>Edit
</Button>
<Button
onClick={() => this.handleDelete(this.props.book.id)}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'book.id' is missing in props validation react/prop-types

@coveralls
Copy link

Coverage Status

Changes Unknown when pulling 93642cd on development into ** on staging**.

@benfluleck benfluleck merged commit 93642cd into staging Dec 17, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants