Skip to content

Commit df5a823

Browse files
committed
chore: expose strategy override
1 parent 6fa7b91 commit df5a823

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/graphql/schema.gql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,7 @@ type StrategyItem {
622622
about: String
623623
spacesCount: Int
624624
verifiedSpacesCount: Int
625+
override: Boolean
625626
disabled: Boolean
626627
}
627628

src/helpers/strategies.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ async function loadStrategies() {
4646
strategy.id = strategy.key;
4747
strategy.spacesCount = strategy.spacesCount || 0;
4848
strategy.verifiedSpacesCount = strategy.verifiedSpacesCount || 0;
49+
strategy.override = strategy.dependOnOtherAddress || false;
4950
strategy.disabled = strategy.disabled || false;
5051
return strategy;
5152
})

0 commit comments

Comments
 (0)