Require User.fullname
to be populated
#4699
Labels
deck-scrubbing
Tech debt or other between-initiative tidy-up work
User.fullname
to be populated
#4699
User.fullname
is aTextField
that defaults to an empty string. There are 27User
on the live server withfullname == ''
. If we can manually fill in that field for each that would allow us to enforcefullname
being populated in both the model and views/forms (non-null and non-empty?). That could allow us to be rid of theUser.name
property which usesfullname
but falls back tousername
iffullname
is empty. This would simplify theUser
model and populated the DB with better data for managing or viewingUser
instances.The text was updated successfully, but these errors were encountered: