mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
10 lines
185 B
Ruby
10 lines
185 B
Ruby
class NoScopeMongoid
|
|
include Mongoid::Document
|
|
include AASM
|
|
|
|
field :status, type: String
|
|
|
|
aasm :create_scopes => false, :column => :status do
|
|
state :ignored_scope
|
|
end
|
|
end
|