- 03 Mar, 2016 4 commits
-
-
Eric Chiang authored
integration: fix email case sensitivity test
-
Eric Chiang authored
-
Eric Chiang authored
add support for resend an invite email
-
Eric Chiang authored
db: email comparison should be case insensitive
-
- 02 Mar, 2016 5 commits
-
-
Eric Chiang authored
Fix cross compilation
-
Eric Chiang authored
-
Eric Chiang authored
-
Eric Chiang authored
-
Eric Chiang authored
-
- 01 Mar, 2016 5 commits
-
-
Eric Chiang authored
-
Eric Chiang authored
-
Eric Chiang authored
When reading migrations from files, sql-migrate attempts to split SQL statements. The parsing logic does not handle $BODY$ statements and broke when the migration included one. Replace go-bindata with a small migration generation script and use in memory migrations instead.
-
Eric Chiang authored
-
Eric Chiang authored
Fixes #338
-
- 29 Feb, 2016 2 commits
-
-
Eric Chiang authored
*: remove unused code
-
Eric Chiang authored
This change has no functional changes, it only removes dead code.
-
- 26 Feb, 2016 1 commit
-
-
Rubén Soleto Buenvarón authored
This change solves the User's API problem when you want to create an user that its email hasn't been verified yet but it exist. At now, you can resend invitation email using endpoint /users/{id}/resend-invitation Fixes #184
-
- 25 Feb, 2016 4 commits
-
-
Eric Chiang authored
db: only allow one open connection for in memory databases
-
Eric Chiang authored
examples: set example app flag defaults to work with --no-db mode
-
Eric Chiang authored
functional: don't fail if postgres or ldap isn't available
-
Eric Chiang authored
-
- 24 Feb, 2016 2 commits
-
-
Eric Chiang authored
user: fix password info JSON encoding to survive round trips
-
Eric Chiang authored
PasswordInfos are marshaled when storing them in the database as part of the local connector. However, the custom unmarsheler defined could not unmarshal the standard marshling of this struct. Add a struct tag to the Password field to correct this. Closes #332
-
- 23 Feb, 2016 2 commits
-
-
Eric Chiang authored
-
Eric Chiang authored
sqlite3 in memory databases do not support concurrent writes. Limit number of open connections to prevent race conditions.
-
- 20 Feb, 2016 1 commit
-
-
bobbyrullo authored
move to sqlite3 for --no-db mode and tests
-
- 19 Feb, 2016 1 commit
-
-
Eric Chiang authored
Documentation: update roadmap with issue and PR numbers
-
- 18 Feb, 2016 3 commits
-
-
Eric Chiang authored
Closes #299
-
Eric Chiang authored
*: add go 1.6 to CI
-
Eric Chiang authored
-
- 17 Feb, 2016 3 commits
-
-
Eric Chiang authored
-
Eric Chiang authored
-
Eric Chiang authored
connector_ldap: Make constants for default values, simplify logic
-
- 16 Feb, 2016 3 commits
-
-
Eric Chiang authored
-
Frode Nordahl authored
-
Eric Chiang authored
Get DN from entry, not entryDN attribute
-
- 14 Feb, 2016 1 commit
-
-
Frode Nordahl authored
Not all LDAP servers have entryDN available as an attribute. Reading up on https://tools.ietf.org/html/rfc5020 tells me that entryDN is intended for making the DN available for attribute value assertions. Thus it is not mandatory for a LDAP server to make it available as an retrievable attribute. The DN is always a part of the entry returned in a search result, just use it. Fixes #314
-
- 12 Feb, 2016 3 commits
-
-
Eric Chiang authored
-
Eric Chiang authored
go-sqlite3 takes a long time to compile, so it's very important to cache a build rather than re-compile every time. Use go install instead of go build in the build script to cache all packages. Print a warning in the test script if cached packages are not found.
-
Eric Chiang authored
-