(token string)
| 109 | } |
| 110 | |
| 111 | func (m *Manager) pluginConfExists(token string) bool { |
| 112 | pluginConf, _ := m.db.GetPluginConfByToken(token) |
| 113 | return pluginConf != nil |
| 114 | } |
| 115 | |
| 116 | // SetPluginEnabled sets the plugins enabled state. |
| 117 | func (m *Manager) SetPluginEnabled(pluginID uint, enabled bool) error { |
nothing calls this directly
no test coverage detected