we started a project with rails 4 beta and emberjs 1.0.0rc1.
I'm looking for "recipes" or patterns for the following problems:
Have/simulate "before filters", for example redirect a user when there is no current user
Have controllers and models namespace, like /admin/videos | /videos | /member/videos for accessing different collections based on your role (admin/videos returns all videos, /videos only public videos and /member/videos only my videos for example...)
When and where to load and store a shared object, for example, currentUser ? It should be available everywhere, like "rails" current_user (We use needs for now or App.set(), but not really happy with it
Best way to catch an event on "document" DOM element, not emberjs application view (for example Hide/show a menu like facebook user menu) : I click on an icone to show it, I click on the DOM document to hide it (sometimes outside of my ember application...
