Browse Source

Fix Single Org Policy check (#4207)

There was an error in the single org policy check to determine how many
users there are in an org. The `or` check was at the wrong location in
the DSL.

This is now fixed.

Fixes #4205
pull/3752/head
Mathijs van Veluw 1 year ago
committed by GitHub
parent
commit
76a3f0f531
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/db/models/organization.rs

3
src/db/models/organization.rs

@ -648,8 +648,7 @@ impl UserOrganization {
db_run! { conn: { db_run! { conn: {
users_organizations::table users_organizations::table
.filter(users_organizations::user_uuid.eq(user_uuid)) .filter(users_organizations::user_uuid.eq(user_uuid))
.filter(users_organizations::status.eq(UserOrgStatus::Accepted as i32)) .filter(users_organizations::status.eq(UserOrgStatus::Accepted as i32).or(users_organizations::status.eq(UserOrgStatus::Confirmed as i32)))
.or_filter(users_organizations::status.eq(UserOrgStatus::Confirmed as i32))
.count() .count()
.first::<i64>(conn) .first::<i64>(conn)
.unwrap_or(0) .unwrap_or(0)

Loading…
Cancel
Save