-
Notifications
You must be signed in to change notification settings - Fork 336
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
Fix persist #81
Fix persist #81
Conversation
removed piping (kept throwing address in use errors) added getAuth cashay helper added loginWithToken added requireAuth
made welcome async added teamMembers to schema
refactor email factory
upgrade to latest cashay add invitation table add auth to graphql queries
add auth upgrade packages ready for merging!
# Conflicts: # package.json # src/client/client.js # src/server/utils/getCashaySchema.js
# Conflicts: # package.json # src/client/client.js # src/server/graphql/models/CachedUser/cachedUserSchema.js # src/universal/modules/landing/containers/Landing/LandingContainer.js # webpack/webpack.config.prod.js
keep lock on the client
keep lock on the client
# Conflicts: # package.json # src/client/client.js # src/universal/decorators/requireAuth/requireAuth.js
@@ -17,7 +17,7 @@ | |||
"start": "NODE_ENV=production node ./src/server/server.babel.js", | |||
"dev": "NODE_ENV=development node ./src/server/server.babel.js", | |||
"build": "rimraf build && concurrently \"npm run build:client\" \"npm run build:server\"", | |||
"bs": "rimraf build && concurrently \"npm run build:client\" \"npm run build:server\" \"npm run start\"", | |||
"bs": "npm run build && npm start", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't want a race condition between creating prerender.js
and requiring it.
Address at least adding that silly comment and I'll merge this post-haste. After it's merged, I'll pull it into the branch I'm working on. |
# Conflicts: # package.json # src/client/client.js # src/universal/decorators/requireAuth/requireAuth.js
Oh man, my last push never made it into this yesterday. Give the HOCs, a once over, now To test, clear your authToken & head to |
Ok. I'll pull it down. |
Found a couple of small things, sending you a PR 😉 |
👍 |
nice! will PR the other PR in a min or 2 |
fixes #80, and gets us awfully close to #77.