MCPcopy Create free account
hub / github.com/elimity-com/scim / checkApplicability

Function checkApplicability

errors/error.go:110–122  ·  view source on GitHub ↗
(err ScimError, method string)

Source from the content-addressed store, hash-verified

108)
109
110func checkApplicability(err ScimError, method string) bool {
111 methods, ok := applicability[err.Status]
112 if !ok {
113 return false
114 }
115
116 for _, m := range methods {
117 if m == method {
118 return true
119 }
120 }
121 return false
122}
123
124// ScimError is a SCIM error response to indicate operation success or failure.
125type ScimError struct {

Callers 1

CheckScimErrorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…