@user.route('/', methods=['POST'])
def create():
form = CreateUserForm()
if form.validate_on_submit():
user_datastore.create_user(form)
Using both libraries together, is there some way that I can do as in the code above. I want to pass the form (with its fields) directly to create_user, so that I don't have to split each field just to add them there. Is this possible?