博文

目前显示的是 十二月, 2021的博文

Redmine Webhook plugin 使用问题记录

图片
环境说明 Redmine 4.0.4.stable Redmine Webhook plugin 0.0.5 问题:无法打开插件设置页面 解决方法1 :直接在DB中操作,插入所需数据( 建议 ) 解决方法2 :通过 post 请求创建 参考 config/routes.rb get 'projects/:id/webhook_settings' , :controller => 'webhook_settings' , :action => 'index' , :as => :list_webhook_settings get 'projects/:id/webhook_settings/show' , :controller => 'webhook_settings' , :action => 'show' , :as => :show_webhook_settings post 'projects/:id/webhook_settings/create' , :controller => 'webhook_settings' , :action => 'create' , :as => :create_webhook put 'projects/:id/webhook_settings/:webhook_id' , :controller => 'webhook_settings' , :action => 'update' , :as => :update_webhook delete 'projects/:id/webhook_settings/:webhook_id' , :controller => 'webhook_settings' , :action => 'destroy' , :as => :delete_webhook 问题:在 redmine 的问题列表中右键操作,不会触发 webhoo