Fixed type in web application.

This commit is contained in:
Russell Jones 2017-03-16 14:35:43 -07:00
parent 7bed933baa
commit 0b26b97b10
5 changed files with 10 additions and 10 deletions

View file

@ -5664,7 +5664,7 @@ webpackJsonp([0],[
_user.actions.signupWithOidc(providerName, this.props.params.inviteToken);
},
onSignupWithU2f: function onSignupWithU2f(username, password) {
_user.actions.signupWithU2F(username, password, this.props.params.inviteToken);
_user.actions.signupWithU2f(username, password, this.props.params.inviteToken);
},
onSignup: function onSignup(username, password, token) {
_user.actions.signup(username, password, token, this.props.params.inviteToken);

File diff suppressed because one or more lines are too long

2
web/dist/index.html vendored
View file

@ -10,5 +10,5 @@
<body class="grv">
<div id="app"></div>
<div id="bearer_token" style="display: none;">{{.Session}}</div>
<script type="text/javascript" src="/web/app/vendor.6a500c88f00b0a11eb77.js"></script><script type="text/javascript" src="/web/app/styles.6a500c88f00b0a11eb77.js"></script><script type="text/javascript" src="/web/app/app.6a500c88f00b0a11eb77.js"></script></body>
<script type="text/javascript" src="/web/app/vendor.664c1b2299a0e6544be9.js"></script><script type="text/javascript" src="/web/app/styles.664c1b2299a0e6544be9.js"></script><script type="text/javascript" src="/web/app/app.664c1b2299a0e6544be9.js"></script></body>
</html>

View file

@ -52,7 +52,7 @@ const Invite = React.createClass({
},
onSignupWithU2f(username, password) {
actions.signupWithU2F(username, password, this.props.params.inviteToken);
actions.signupWithU2f(username, password, this.props.params.inviteToken);
},
onSignup(username, password, token) {
@ -355,4 +355,4 @@ const InviteFooter = ({auth2faType}) => {
export default Invite;
export {
InviteInputForm
}
}