特定のモデルの状態のコレクションにアクセスすることは可能ですか:
クラス 会話含む AASM
aasm_initial_state :unread
aasm_state :unread
aasm_state :read
aasm_state :closed
aasm_event :view do
transitions :to => :read, :from => [:unread]
end
aasm_event :close do
transitions :to => :closed, :from => [:read, :unread]
end
終わり
次のような状態の配列を取得できるようにしたいと思います。
['unread', 'read', 'closed']
これは可能ですか?