Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create OpenStax Accounts provider #141

Merged
merged 3 commits into from
Sep 13, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
don't clobber username if present
  • Loading branch information
reedstrm committed Aug 9, 2019
commit 8b6745a2a03e48e8f5d99be7f0ca07112621488c
4 changes: 3 additions & 1 deletion pkg/structs/structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ type User struct {

// PrepareUserData implement PersonalData interface
func (u *User) PrepareUserData() {
u.Username = u.Email
if u.Username == "" {
u.Username = u.Email
}
}

// GoogleUser is a retrieved and authentiacted user from Google.
Expand Down