Cannot create a document workflow #368

This commit is contained in:
Karel Pičman 2015-03-26 13:28:29 +01:00
parent 0826f4ca42
commit 91a2ce575b

View File

@ -25,6 +25,8 @@ class DmsfWorkflow < ActiveRecord::Base
has_many :dmsf_workflow_steps, :dependent => :destroy, :order => 'step ASC, operator DESC'
end
attr_accessible :name
scope :sorted, lambda { order('name ASC') }
scope :global, lambda { where('project_id IS NULL') }