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