Skip to content
This repository has been archived by the owner on May 10, 2019. It is now read-only.

Commit

Permalink
Use ?NATIVE, not #NATIVE.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhirsch committed Oct 21, 2013
1 parent 11cbbe6 commit 9e8ed0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/static/views.js
Expand Up @@ -483,7 +483,7 @@ exports.setup = function(app) {
res.json({
'public-key': publicKey.toSimpleObject(),
'provisioning': '/provision',
'authentication': '/auth#native'
'authentication': '/auth?native'
});
}
});
Expand Down
4 changes: 2 additions & 2 deletions lib/wsapi/discovery.js
Expand Up @@ -47,10 +47,10 @@ exports.process = function(req, res) {
}
wellKnown = {
"public-key": publicKey.toSimpleObject(),
authentication: config.get('public_url') + '/auth#NATIVE',
authentication: config.get('public_url') + '/auth?NATIVE',
provisioning: config.get('public_url') + '/provision'
};
}
res.json(wellKnown);
});
};
};

0 comments on commit 9e8ed0f

Please sign in to comment.