We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34314e4 commit e66ad1fCopy full SHA for e66ad1f
fplus-database/src/database/allocators.rs
@@ -92,6 +92,7 @@ pub async fn create_or_update_allocator(
92
installation_id: Option<i64>,
93
multisig_address: Option<String>,
94
verifiers_gh_handles: Option<String>,
95
+ multisig_threshold: Option<i32>
96
) -> Result<AllocatorModel, sea_orm::DbErr> {
97
98
let existing_allocator = get_allocator(&owner, &repo).await?;
@@ -113,6 +114,7 @@ pub async fn create_or_update_allocator(
113
114
installation_id: Set(installation_id),
115
multisig_address: Set(multisig_address),
116
verifiers_gh_handles: Set(verifiers_gh_handles),
117
+ multisig_threshold: Set(multisig_threshold),
118
..Default::default()
119
};
120
0 commit comments