Accounts.onCreateUser adding extra attributes while creating new users, good practices?

后端 未结 3 1648
一向
一向 2021-02-14 13:04

I\'m creating new user with Accounts.createUser() and it works normally if you are not doing anything fancy. But I want to add some other fields to new user that are not listed

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-14 13:49

    Try this:

    Accounts.onCreateUser((options, user) => (Object.assign({}, user, options)));
    

提交回复
热议问题