Skip to content

Commit

Permalink
README update
Browse files Browse the repository at this point in the history
  • Loading branch information
elohanlon committed Jan 17, 2024
1 parent 4e984f2 commit 034c0d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ The instructions below assume that your Rails application's user model will be c
# if Omniauth::Cul::PermissionFileValidator.permitted?(user_id, affils)
# user = User.find_by(uid: user_id) || User.create!(
# uid: user_id,
# email: "#{user_id}@columbia.edu"
# email: "#{user_id}@columbia.edu",
# password: Devise.friendly_token[0, 20] # Assign random string password, since the omniauth user doesn't need to know the unused local account password
# )
# sign_in_and_redirect user, event: :authentication # this will throw if @user is not activated
# else
Expand Down

0 comments on commit 034c0d4

Please sign in to comment.