Merge pull request #714 from openziti/skip_interstitial_not_deleted

Respect 'deleted' Flag in Skip Interstitial Grant
This commit is contained in:
Michael Quigley 2024-07-29 14:04:31 -04:00 committed by GitHub
commit 311d58e38e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## v0.4.37
FIX: Fix for `store.IsAccountGrantedSkipInterstitial` to respect the `deleted` flag.
FIX: When an error occurs connecting to the proxied endpoint, the `proxy` backend should return HTTP status `502` (https://github.com/openziti/zrok/issues/703)
## v0.4.36

View File

@ -6,7 +6,7 @@ import (
)
func (str *Store) IsAccountGrantedSkipInterstitial(acctId int, trx *sqlx.Tx) (bool, error) {
stmt, err := trx.Prepare("select count(0) from skip_interstitial_grants where account_id = $1")
stmt, err := trx.Prepare("select count(0) from skip_interstitial_grants where account_id = $1 and not deleted")
if err != nil {
return false, errors.Wrap(err, "error preparing skip_interstitial_grants select statement")
}