13 lines
355 B
Ruby
13 lines
355 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class BaseChatChannelMembershipSerializer < ApplicationSerializer
|
||
|
attributes :following,
|
||
|
:muted,
|
||
|
:desktop_notification_level,
|
||
|
:mobile_notification_level,
|
||
|
:chat_channel_id,
|
||
|
:last_read_message_id,
|
||
|
:unread_count,
|
||
|
:unread_mentions
|
||
|
end
|