Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get all events from a model class? I want to filter a list by events.

There was a similar question on mailinglist about all transitions.

I am using https://github.com/pluginaweek/state_machine

share|improve this question
Ok, i found a previous question answering this one: stackoverflow.com/questions/4138437/… – tonymarschall Mar 5 '12 at 10:06
I have to correct myself. Answer on above questions gives all transitions and not the events. – tonymarschall Mar 5 '12 at 10:18
It would probably depend on which state machine software that you're using. – Pavling Mar 5 '12 at 21:09
Right, i have extended my question – tonymarschall Mar 6 '12 at 9:07

2 Answers

up vote 4 down vote accepted

Right on the github page you link to it shows the API methods for:

vehicle.state_events  # shows all the events possible from the current state

and

vehicle.state_paths.events # shows all the events for an object
share|improve this answer
Yes, but this is for a specific object, not the model class – tonymarschall Mar 6 '12 at 10:28
"Vehicle.new.state_events" or "Vehicle.new.state_paths.events" then... there's probably a more direct way, if you look through the API you linked, it does seem to be that each object gets an "events" collection. But I don't use that state machine, so I can't say more than that. – Pavling Mar 6 '12 at 16:25
Here are some more informations about this topic: github.com/pluginaweek/state_machine/issues/165 – tonymarschall Mar 7 '12 at 11:58

This is how I did it, to only list the keys

def self.membership_states
  self.state_machines[:membership_status].states.map(&:name)
end

$ User.membership_states
> [:applied, ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.