UWFlow / rmc

Flow is a website that lets you plan courses with friends.
https://uwflow.com
MIT License
233 stars 73 forks source link

Update Facebook login to expect name #323

Closed jswu closed 6 years ago

jswu commented 6 years ago

Facebook stopped returning first_name and last_name, and instead returns only a single name field. Our User model requires both first_name and last_name.

A better fix would be to remove this requirement from our User model and require only a name. But an easier fix for now is to just best effort parse the returned name into the format that we need.

divad12 commented 6 years ago

Awesome! thx for the fix :)