As part of my validation for a user name I need to strip the white space from the beginning and end of the user input. I know that the .strip method will do this for me but I'm unsure how to use this method.
At what point do I strip the white spaces off a user input? should it be in the form where the info is taken in? Or in the controller or model?
Do it in a callback in the model.