Colin Skow

Results 129 comments of Colin Skow

For pending what would be cool is a tiny material spinner next to username or email that turns into a checkmark or X after validation.

But update SL Demo here in the validation directives. https://github.com/colinskow/superlogin-demo/blob/master/client/www/src/login/login.js NgSL shouldn't need any changes.

I think putting the directives directly in `NG-SuperLogin` is the right move. But leave the existing `checkUsername` function alone so it is not a breaking change: ``` js .directive('checkUsername', function($q,...

Go ahead and patch `superlogin.checkUsername()` to return `$q.reject(err)` if that is necessary. According to the [Angular documentation](https://docs.angularjs.org/api/ng/type/ngModel.NgModelController), rejecting the promise is correct when an async validation fails.

Thank you very much for the report. This error should be caught in the `/register/` route and return a JSON response so something is wrong. See if you can figure...

CouchDB databases are very cheap. I never contemplated a compelling use case where there would be an advantage to mixing other types of docs into the `sl_users` database. Any custom...

If you want to chat, I am in #SuperLogin on the [PouchDB Slack](http://slack.pouchdb.com). Afternoon California time works best. Let me know when and we can set a time.

To summarize our Slack discussion, I am going to check for `type === 'user'` in the CouchDB views, and we will add an optional prefix to the user `_id`. We...