mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PublishedPageSerializer < ApplicationSerializer
|
|
attributes :id, :slug, :public
|
|
|
|
def id
|
|
object.topic_id
|
|
end
|
|
end
|