Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrubelic committed Apr 15, 2019
2 parents 5fe7860 + bb70d41 commit d9e912e
Show file tree
Hide file tree
Showing 12 changed files with 20,178 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"presets": [
[
"es2015",
"@babel/preset-env",
{
"modules": false
}
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,8 +1089,8 @@ OAuth2.prototype.exchangeForToken = function exchangeForToken (oauth, userData)

var payload = objectExtend({}, userData);

for (var key in defaultProviderConfig$1.responseParams) {
var value = defaultProviderConfig$1[key];
for (var key in this$1.providerConfig.responseParams) {
var value = this$1.providerConfig.responseParams[key];

switch(key) {
case 'code':
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.es2015.js
Original file line number Diff line number Diff line change
Expand Up @@ -1087,8 +1087,8 @@ OAuth2.prototype.exchangeForToken = function exchangeForToken (oauth, userData)

var payload = objectExtend({}, userData);

for (var key in defaultProviderConfig$1.responseParams) {
var value = defaultProviderConfig$1[key];
for (var key in this$1.providerConfig.responseParams) {
var value = this$1.providerConfig.responseParams[key];

switch(key) {
case 'code':
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-authenticate.js
Original file line number Diff line number Diff line change
Expand Up @@ -1093,8 +1093,8 @@ OAuth2.prototype.exchangeForToken = function exchangeForToken (oauth, userData)

var payload = objectExtend({}, userData);

for (var key in defaultProviderConfig$1.responseParams) {
var value = defaultProviderConfig$1[key];
for (var key in this$1.providerConfig.responseParams) {
var value = this$1.providerConfig.responseParams[key];

switch(key) {
case 'code':
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-authenticate.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ app.post('/auth/:provider', function(req, res){
}
});

app.listen(4000);
app.listen(4000, 'localhost');

function allowCrossDomain(req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
Expand Down
4 changes: 2 additions & 2 deletions example/vue-authenticate.js
Original file line number Diff line number Diff line change
Expand Up @@ -1093,8 +1093,8 @@ OAuth2.prototype.exchangeForToken = function exchangeForToken (oauth, userData)

var payload = objectExtend({}, userData);

for (var key in defaultProviderConfig$1.responseParams) {
var value = defaultProviderConfig$1[key];
for (var key in this$1.providerConfig.responseParams) {
var value = this$1.providerConfig.responseParams[key];

switch(key) {
case 'code':
Expand Down
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ gulp.task('server', function () {
name: 'VueAuthentication',
root: './example',
base: 'example',
host: 'localhost',
port: 8080,
livereload: true,
verbose: true,
Expand Down
Loading

0 comments on commit d9e912e

Please sign in to comment.