Check if method is in Engram's noStore list
(method string)
| 3348 | |
| 3349 | // Check if method is in Engram's noStore list |
| 3350 | func engramCanStoreMethod(method string) bool { |
| 3351 | noStoreMethods := engramNoStoreMethods() |
| 3352 | for _, m := range noStoreMethods { |
| 3353 | if m == method { |
| 3354 | return false |
| 3355 | } |
| 3356 | } |
| 3357 | |
| 3358 | return true |
| 3359 | } |
| 3360 | |
| 3361 | // Set XSWD permissions to the local Graviton tree |
| 3362 | func setPermissions() { |
no test coverage detected