mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
10 lines
262 B
Ruby
10 lines
262 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class PrivateMessageTopicTrackingStateSerializer < ApplicationSerializer
|
||
|
attributes :topic_id,
|
||
|
:highest_post_number,
|
||
|
:last_read_post_number,
|
||
|
:notification_level,
|
||
|
:group_ids
|
||
|
end
|