Compare commits

..

2 Commits

3 changed files with 8 additions and 7 deletions

View File

@ -35,10 +35,11 @@ notes
A commits type can be one of the following: A commits type can be one of the following:
- **feat**: feature - **feat:** feature
- **fix**: bugfix - **fix:** bugfix
- **refactor**: nothing new added but code restructured, etc - **refactor:** nothing new added but code restructured, etc
- **docs**: documentation changes - **docs:** documentation changes
- **opt:** optimization changes
The commit scope is kinda free, but it's a good idea to use scopes, that have been used before. The commit scope is kinda free, but it's a good idea to use scopes, that have been used before.
Scopes can be nested like this: `scope >> subscope >> subscope`. Scopes can be nested like this: `scope >> subscope >> subscope`.

View File

@ -19,7 +19,7 @@ impl Backend {
) -> anyhow::Result<anyhow::Result<Uuid, Error>> { ) -> anyhow::Result<anyhow::Result<Uuid, Error>> {
match sqlx::query_as!( match sqlx::query_as!(
AuthTokensRow, AuthTokensRow,
r#"SELECT * FROM AuthTokens WHERE token = ?;"#, r#"SELECT * FROM AuthTokens WHERE token = ? LIMIT 1;"#,
token token
) )
.fetch_one(&self.pool) .fetch_one(&self.pool)
@ -49,7 +49,7 @@ impl Backend {
) -> anyhow::Result<anyhow::Result<(), Error>> { ) -> anyhow::Result<anyhow::Result<(), Error>> {
match sqlx::query_as!( match sqlx::query_as!(
InviteTokensRow, InviteTokensRow,
r#"SELECT * FROM InviteTokens WHERE token = ?;"#, r#"SELECT * FROM InviteTokens WHERE token = ? LIMIT 1;"#,
token token
) )
.fetch_one(&self.pool) .fetch_one(&self.pool)

View File

@ -90,7 +90,7 @@ impl Backend {
async fn get_user(&self, userid: Uuid) -> Result<Result<User, Error>> { async fn get_user(&self, userid: Uuid) -> Result<Result<User, Error>> {
match sqlx::query_as!( match sqlx::query_as!(
UsersRow, UsersRow,
r#"SELECT * FROM Users WHERE userid = ?;"#, r#"SELECT * FROM Users WHERE userid = ? LIMIT 1;"#,
userid.as_bytes().as_slice() userid.as_bytes().as_slice()
) )
.fetch_one(&self.pool) .fetch_one(&self.pool)