Forum OpenACS Q&A: using screen_name instead of first+last

Is there an easy way to configure openACS to use screen_name pretty
much everywhere, making first+last name optional?  Looks like a big
job to me, but I hope I'm missing something simple.
Collapse
Posted by Sarah Barwig on
The way I hacked it on a ClassicACS site was:

datamodel fix: add actual_first_names and actual_last_name to user table (so user could actually put in their name if they wanted to) and you can pull them back out if you need them at some point.

upon user registration: put the screen_name into the first_names field. put   into the last_name field.

This way, all queries that pull first_names last_name will end up with screen_name, and you can keep their actual names somewhere else for future reference.

Is this what you were asking?

Collapse
Posted by Sarah Barwig on
whoops. oh yeah, make the first_names field which now contains the screen_name unique.
Collapse
Posted by Jonathan Ellis on
That sounds like something doable. :)  Thanks!