(&self, ctx: &mut ValidationContext, _: &())
| 224 | impl Validator for UpdatePluginDevSourceRequest { |
| 225 | type ContextData = (); |
| 226 | fn validate(&self, ctx: &mut ValidationContext, _: &()) { |
| 227 | validation::web::check_script_source(ctx, "new_source", &self.new_source); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | // update plugin dev source |
nothing calls this directly
no test coverage detected