Skip to content

Commit

Permalink
Merge 994b10d into 5cd8022
Browse files Browse the repository at this point in the history
  • Loading branch information
ebzeal committed Feb 1, 2019
2 parents 5cd8022 + 994b10d commit 643668e
Show file tree
Hide file tree
Showing 4 changed files with 1,275 additions and 242 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The preferred JSON object to be returned by the API should be structured as foll

## Documentation

Swagger (http://localhost:3000/docs/#/)
Swagger (https://neon-ah-staging.herokuapp.com/api/v1/docs/#/)

### Users (for authentication)

Expand Down
1 change: 0 additions & 1 deletion server/controllers/TagController.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ class TagController {

let { tagName } = req.params;
tagName = tagName.toLowerCase();

const tag = await Tag.findOne({
where: { name: tagName }
});
Expand Down
1 change: 0 additions & 1 deletion server/controllers/UserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ class UserController {
const {
id, displayName, emails, photos, provider
} = profile;

const emailValue = emails[0].value.toLowerCase();

const [user] = await User.findOrCreate({
Expand Down
Loading

0 comments on commit 643668e

Please sign in to comment.