Add "real name" field #12
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
infrastructure
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: bit-badger/jobs-jobs-jobs#12
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add a field where users can put in their real names, which will be displayed at the top of the employment profile. In general, and throughout the application, where we currently use the display name, use the real name (if entered), defaulting to display name. Continue to update the display name on each login as we currently do.
This will be a part of the initial release. To provide the real name field:
real_name
column /RealName
property for the citizenOnce this is done, following are the changes that should be applied to display names:
display_name
column /DisplayName
to be nullablenull
if it's blankCitizenName
property that displays the first non-null value from (in order)RealName
,DisplayName
, andNaUser
DisplayName
is being used to useCitizenName
insteadFinally, run a query to set
display_name
tonull
if its value matches thena_user
column.This is done, ready for v1.0