Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2273,7 +2273,7 @@ describe('given the load organizations connection function', () => {
},
orgDetails: {
en: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin',
zone: 'zone sa',
Expand All @@ -2283,7 +2283,7 @@ describe('given the load organizations connection function', () => {
city: 'city two',
},
fr: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin',
zone: 'zone sa',
Expand Down Expand Up @@ -4529,7 +4529,7 @@ describe('given the load organizations connection function', () => {
},
orgDetails: {
en: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin',
zone: 'zone sa',
Expand All @@ -4539,7 +4539,7 @@ describe('given the load organizations connection function', () => {
city: 'city two',
},
fr: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin',
zone: 'zone sa',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,7 @@ describe('given the load organization connections by user id function', () => {
},
orgDetails: {
en: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin Org',
zone: 'zone sa',
Expand All @@ -2322,7 +2322,7 @@ describe('given the load organization connections by user id function', () => {
city: 'city sa',
},
fr: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin Org',
zone: 'zone sa',
Expand Down Expand Up @@ -4635,7 +4635,7 @@ describe('given the load organization connections by user id function', () => {
},
orgDetails: {
en: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin Org',
zone: 'zone sa',
Expand All @@ -4645,7 +4645,7 @@ describe('given the load organization connections by user id function', () => {
city: 'city sa',
},
fr: {
slug: 'sa',
slug: 'super-admin',
acronym: 'SA',
name: 'Super Admin Org',
zone: 'zone sa',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export const loadOrgConnectionsByDomainId = ({

let includeSuperAdminOrgQuery = aql``
if (!includeSuperAdminOrg) {
includeSuperAdminOrgQuery = aql`FILTER org.orgDetails.en.slug != "sa" OR org.orgDetails.fr.slug != "sa"`
includeSuperAdminOrgQuery = aql`FILTER org.orgDetails.en.slug != "super-admin" OR org.orgDetails.fr.slug != "super-admin"`
}

let orgKeysQuery
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ export const loadOrgConnectionsByUserId = ({

let includeSuperAdminOrgQuery = aql``
if (!includeSuperAdminOrg) {
includeSuperAdminOrgQuery = aql`FILTER org.orgDetails.en.slug != "sa" OR org.orgDetails.fr.slug != "sa"`
includeSuperAdminOrgQuery = aql`FILTER org.orgDetails.en.slug != "super-admin" OR org.orgDetails.fr.slug != "super-admin"`
}

let orgKeysQuery
Expand Down