judgeIsInstallBot接口修改参数

This commit is contained in:
wanjia 2023-03-31 11:42:08 +08:00
parent ee5549ebb0
commit 04708fa109
2 changed files with 4 additions and 4 deletions

View File

@ -1151,8 +1151,8 @@ public class UserService extends AbstractUserBot implements IUserService {
}
}
judgeIsInstallBotResponse.setInstallOwners(installRepoList);
judgeIsInstallBotResponse.setUninstallOwners(unInstallRepoList);
judgeIsInstallBotResponse.setInstallRepos(installRepoList);
judgeIsInstallBotResponse.setUninstallRepos(unInstallRepoList);
return judgeIsInstallBotResponse;
}

View File

@ -18,7 +18,7 @@ import java.util.List;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class JudgeIsInstallBotResponse {
private List<String> installOwners;
private List<String> installRepos;
private List<String> uninstallOwners;
private List<String> uninstallRepos;
}