(err error)
| 3990 | } |
| 3991 | |
| 3992 | func isChatStartWorkspaceManualUpdateRequiredError(err error) bool { |
| 3993 | var diagnosticErr *dynamicparameters.DiagnosticError |
| 3994 | if errors.As(err, &diagnosticErr) { |
| 3995 | return true |
| 3996 | } |
| 3997 | |
| 3998 | return errors.Is(err, wsbuilder.ErrParameterValidation) |
| 3999 | } |
| 4000 | |
| 4001 | func chatWorkspaceAuditStatus(err error) int { |
| 4002 | if responder, ok := httperror.IsResponder(err); ok { |
no test coverage detected