Add User Accounts (user-accounts)
Opened this issue · 6 comments
Login with Google/Facebook and User Accounts
Users should be given access to delete their own markers via the api.
python-social-auth might be worth looking into in the future.
An article from the Mailchimp blog about why using stuff like "Login with Facebook" and "Login with Google" can hurt a product's brand. It's interesting to consider, but I agree that at our scale it would make much more sense to use OAuth2.0 strategies.
I totally agree, actually. That article is very compelling.
Plus, we can probably make an account really easy: email + password. It's basically the same thing without the drawbacks.
Interesting. Django already has a user auth system built in already. It's
super easy. I can take care of it -- I've used it before
On Tue, Feb 3, 2015, 12:51 AM Zeppelin notifications@github.com wrote:
I totally agree, actually. That article is very compelling.
Plus, we can probably make an account really easy: email + password.
—
Reply to this email directly or view it on GitHub
#47 (comment)
.
I changed the assignee to Danny-- Django has a built in user auth system. You can investigate social auth options (there are earlier comments here that address it).
Also, allow users to delete their own records with the api. You'll need to get familar with the REST API package, which is called Tastypie. We can go over it more