File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Certify.Server/Certify.Server.Hub.Api/Services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -236,14 +236,14 @@ public async Task<StatusSummary> GetManagedCertificateSummary(AuthContext? curre
236236 return await PerformInstanceCommandTaskWithResult < ActionResult ? > ( instanceId , args , ManagementHubCommands . UpdateCertificateAuthority ) ;
237237 }
238238
239- public async Task < ActionResult ? > RemoveCertificateAuthority ( string instanceId , string id , AuthContext ? currentAuthContext )
239+ public async Task < ActionResult ? > RemoveCertificateAuthority ( string instanceId , string caId , AuthContext ? currentAuthContext )
240240 {
241241 var args = new KeyValuePair < string , string > [ ] {
242242 new ( "instanceId" , instanceId ) ,
243- new ( "id" , id )
243+ new ( "id" , caId )
244244 } ;
245245
246- return await PerformInstanceCommandTaskWithResult < ActionResult ? > ( id , args , ManagementHubCommands . RemoveCertificateAuthority ) ;
246+ return await PerformInstanceCommandTaskWithResult < ActionResult ? > ( instanceId , args , ManagementHubCommands . RemoveCertificateAuthority ) ;
247247 }
248248
249249 public async Task < ICollection < Models . AccountDetails > ? > GetAcmeAccounts ( string instanceId , AuthContext ? currentAuthContext )
You can’t perform that action at this time.
0 commit comments