HI,
We have a hook where we want to show custom message in UI during commit while using in line edit,
With SCM tools liek git client we are using belwo class and showing the message , is there any way to show warning message from UI as well (in line edit) , BB version that we are using is 5.16
Optional scmHookDetails = repositoryHookRequest.getScmHookDetails();
if (scmHookDetails.isPresent()) {
scmHookDetails.ifPresent(scmDetails -> {
RepositoryHookVeto repositoryHookVeto = repositoryHookResult.getVetoes().get(0);
scmDetails.err().println("----------------------------------------------------------------------------------");
scmDetails.err().println("WARNING:
Thanks,
Gopi