Check if hooks are installed in the global plugin.
(&self)
| 722 | |
| 723 | /// Check if hooks are installed in the global plugin. |
| 724 | pub fn is_installed_global(&self) -> bool { |
| 725 | match Self::global_config_dir() { |
| 726 | Some(dir) => Self::is_installed_in(&dir), |
| 727 | None => false, |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | /// Parse the common base fields and build a TurnEvent with the session |
| 732 | /// ID and transcript path populated. |
no test coverage detected