File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -90,3 +90,4 @@ https://atmospherejs.com/meteor/reactive-dict
9090* [ Accounts.resetPassword] ( http://docs.meteor.com/#/full/accounts_resetpassword )
9191* [ Accounts.onLogin] ( http://docs.meteor.com/#/full/accounts_onlogin )
9292* [ Accounts.onLoginFailure] ( http://docs.meteor.com/#/full/accounts_onloginfailure )
93+ * ` Accounts._hashPassword ` - SHA-256 hashes password, for use with methods that may require authentication
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import User from './User';
44import { hashPassword } from '../../lib/utils' ;
55
66module . exports = {
7+ _hashPassword :hashPassword ,
78 createUser ( options , callback = ( ) => { } ) {
89 if ( options . username ) options . username = options . username ;
910 if ( options . email ) options . email = options . email ;
You can’t perform that action at this time.
0 commit comments