mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 05:15:47 +08:00
10 lines
202 B
Ruby
10 lines
202 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class SidebarUrlSerializer < ApplicationSerializer
|
||
|
attributes :id, :name, :value, :icon, :external
|
||
|
|
||
|
def external
|
||
|
object.external? || object.full_reload?
|
||
|
end
|
||
|
end
|