flow_core
flow_core copied to clipboard
FlowCore is a Rails engine to help you build your automation or business process application.
工作流的定义可以修改吗
比如你seed.rb里的定义,deploy之后,我以后中间想继续插流程,可以吗
Bumps [activerecord](https://github.com/rails/rails) from 6.1.3.2 to 6.1.6.1. Release notes Sourced from activerecord's releases. 6.1.6 Active Support Fix and add protections for XSS in ActionView::Helpers and ERB::Util. Add the method ERB::Util.xml_name_escape to...
Bumps [rails-html-sanitizer](https://github.com/rails/rails-html-sanitizer) from 1.3.0 to 1.4.3. Release notes Sourced from rails-html-sanitizer's releases. 1.4.3 / 2022-06-09 Address a possible XSS vulnerability with certain configurations of Rails::Html::Sanitizer. Prevent the combination of select...
Bumps [rack](https://github.com/rack/rack) from 2.2.3 to 2.2.3.1. Changelog Sourced from rack's changelog. Changelog All notable changes to this project will be documented in this file. For info on how to format...
Bumps [actionview](https://github.com/rails/rails) from 6.1.3.2 to 6.1.5.1. Release notes Sourced from actionview's releases. 6.1.5 Active Support Fix ActiveSupport::Duration.build to support negative values. The algorithm to collect the parts of the ActiveSupport::Duration...
Bumps [actionpack](https://github.com/rails/rails) from 6.1.3.2 to 6.1.5.1. Release notes Sourced from actionpack's releases. 6.1.5 Active Support Fix ActiveSupport::Duration.build to support negative values. The algorithm to collect the parts of the ActiveSupport::Duration...
Bumps [puma](https://github.com/puma/puma) from 5.3.1 to 5.6.4. Release notes Sourced from puma's releases. 5.6.4 Security Close several HTTP Request Smuggling exploits (CVE-2022-24790) The 5.6.3 release was a mistake (released the wrong...
Bumps [activestorage](https://github.com/rails/rails) from 6.1.3.2 to 6.1.4.7. Release notes Sourced from activestorage's releases. 6.1.4.4 Active Support No changes. Active Model No changes. Active Record No changes. Action View No changes. Action...
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.4 to 1.12.5. Release notes Sourced from nokogiri's releases. 1.12.5 / 2021-09-27 Security [JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h). In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX...
您好,咨询下 flow_core 集成已有业务系统的问题。 现有业务系统是通过 FSM 来进行简单状态管理的,现在想集成这个Gem 满足知会等功能。 但是文档里提到 > 审批工作流的特点是流程绑定一个表单... 翻看了源码,work_flow, instance, task 基本都关联了 form,且必须 form_filled 后才能 finish。现需要集成的效果是,现有的业务系统只需要在表单 save 时启动这个工作流实例,接收审核结果就行。因此 work_flow 只需要关联已存在的业务 model 就行。比如我们现有的采购流程,希望订单创建保存后,启动 work_flow,关联这个订单ID就行。 demo 里的工作流感觉有点怪,感觉是为了 work_flow 而创建了一个业务 form,而不是先有业务,再去跑的工作流。(之前基本没搞过工作流,这个感觉错了勿怪==~)。...