diff options
author | Nassim Bounouas <NassimBounouas@users.noreply.github.com> | 2019-07-02 11:16:33 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-07-02 11:16:33 +0200 |
commit | 50b4dcce56275e57fc15ade7529f5c501cad150d (patch) | |
tree | e46c0faa68eb92f964dad01df83b0126a7e9077e /.github | |
parent | c1109b45f6d6ed8024908df2340f8c06ae4c5db7 (diff) | |
download | PeerTube-50b4dcce56275e57fc15ade7529f5c501cad150d.tar.gz PeerTube-50b4dcce56275e57fc15ade7529f5c501cad150d.tar.zst PeerTube-50b4dcce56275e57fc15ade7529f5c501cad150d.zip |
Fix/connection with email (#1917)
* #1916 Load user by email - insensitive query
* Revert "Case insensitive login"
This reverts commit c1521ca3d757bee91f7dfbb15b3717162bf4997d.
* #1916 Load user - insensitive query for username and sensitive for email
* #1916 Unit test for insensitive username login && documentation
Diffstat (limited to '.github')
-rw-r--r-- | .github/CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index bbf06c87f..1672ebfa9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md | |||
@@ -181,13 +181,13 @@ Then, we can create the databases (if they don't already exist): | |||
181 | 181 | ||
182 | ``` | 182 | ``` |
183 | $ sudo -u postgres createuser you_username --createdb --superuser | 183 | $ sudo -u postgres createuser you_username --createdb --superuser |
184 | $ createdb -O peertube peertube_test{1,2,3,4,5,6} | 184 | $ npm run clean:server:test |
185 | ``` | 185 | ``` |
186 | 186 | ||
187 | Build the application and run the unit/integration tests: | 187 | Build the application and run the unit/integration tests: |
188 | 188 | ||
189 | ``` | 189 | ``` |
190 | $ npm run build | 190 | $ npm run build -- --light |
191 | $ npm test | 191 | $ npm test |
192 | ``` | 192 | ``` |
193 | 193 | ||