Class: SimpleChat::ChatRoom

Inherits:
ApplicationRecord show all
Defined in:
app/models/simple_chat/chat_room.rb

Instance Method Summary collapse

Instance Method Details

#is_member?(user) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'app/models/simple_chat/chat_room.rb', line 9

def is_member?(user)
  chat_members.exists?(user: user)
end