-
Notifications
You must be signed in to change notification settings - Fork 9
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
Migration to Meteor 3.0 #21
base: master
Are you sure you want to change the base?
Conversation
I believe to complete this, these would need to be modified: https://github.com/leaonline/oauth2-server/blob/master/lib/webapp.js#L8 From: Reference: https://docs.meteor.com/changelog Packages updated here: https://github.com/leaonline/oauth2-server/blob/master/package.js |
@jeffreyflynt actually the switch to express demanded even bigger changes, including changes in the respective Took me two days to fully debug and update. Will push, once code is cleaned up and documented. |
When I migrated to Meteor 3, I noticed I had to do the below; otherwise:
to
|
@jeffreyflynt yes I removed the '*' entirely. Meteor 3 now uses |
Implements Refresh Token Flow for Meteor 3
This is on stale until we get code-coverage fixed for package-tests in Meteor 3, see serut/meteor-coverage#95 which is currently blocked due to meteor/meteor#13287 |
… versions of node-oauth2-server
Published |
This PR makes the package fully aware of Meteor 3, where all DB calls in model, but also routes and higher level functions are now fully async/await compatible.