├── .idea ├── OAuth 2.0 - with promises.iml ├── jsLibraryMappings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── authorisation ├── accessTokenModel.js ├── authRoutes.js └── authRoutesMethods.js ├── databaseHelpers ├── accessTokensDBHelper.js ├── mySqlWrapper.js └── userDBHelper.js ├── index.js ├── npm-debug.log ├── package.json └── restrictedArea ├── restrictedAreaRoutes.js └── restrictedAreaRoutesMethods.js /.idea/OAuth 2.0 - with promises.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/.idea/OAuth 2.0 - with promises.iml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/README.md -------------------------------------------------------------------------------- /authorisation/accessTokenModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/authorisation/accessTokenModel.js -------------------------------------------------------------------------------- /authorisation/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/authorisation/authRoutes.js -------------------------------------------------------------------------------- /authorisation/authRoutesMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/authorisation/authRoutesMethods.js -------------------------------------------------------------------------------- /databaseHelpers/accessTokensDBHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/databaseHelpers/accessTokensDBHelper.js -------------------------------------------------------------------------------- /databaseHelpers/mySqlWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/databaseHelpers/mySqlWrapper.js -------------------------------------------------------------------------------- /databaseHelpers/userDBHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/databaseHelpers/userDBHelper.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/index.js -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/package.json -------------------------------------------------------------------------------- /restrictedArea/restrictedAreaRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/restrictedArea/restrictedAreaRoutes.js -------------------------------------------------------------------------------- /restrictedArea/restrictedAreaRoutesMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meeks91/nodeJS_OAuth2Example/HEAD/restrictedArea/restrictedAreaRoutesMethods.js --------------------------------------------------------------------------------