Skip to content

Commit

Permalink
Closes #5
Browse files Browse the repository at this point in the history
Names ui handlers
  • Loading branch information
payne-chris-r committed Apr 1, 2017
1 parent d6f4d29 commit 5aeb7a0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions assets/scripts/auth/ui.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
'use strict';
'use strict'

const success = (data) => {
console.log(data);
};
const signInSuccess = (data) => {
console.log(data)
}

const failure = (error) => {
console.error(error);
};
const signInFailure = (error) => {
console.error(error)
}

module.exports = {
failure,
success,
};
signInFailure,
signInSuccess
}

0 comments on commit 5aeb7a0

Please sign in to comment.