Skip to content

Instantly share code, notes, and snippets.

@domagude
Created November 14, 2017 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domagude/5371634103b878bee997e2767306cfef to your computer and use it in GitHub Desktop.
Save domagude/5371634103b878bee997e2767306cfef to your computer and use it in GitHub Desktop.
...
def opened_conversations_windows
if user_signed_in?
# opened conversations
session[:private_conversations] ||= []
@private_conversations_windows = Private::Conversation.includes(:recipient, :messages)
.find(session[:private_conversations])
else
@private_conversations_windows = []
end
end
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment