IsQuestionsIgnorePath checks whether the questionID is in ignore path
(questionID string)
| 52 | |
| 53 | // IsQuestionsIgnorePath checks whether the questionID is in ignore path |
| 54 | func IsQuestionsIgnorePath(questionID string) bool { |
| 55 | ignorePathInit.Do(initPathIgnore) |
| 56 | return slices.Contains(pathIgnore.Questions, questionID) |
| 57 | } |