mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 02:51:10 +08:00
Related: https://meta.discourse.org/t/feature-request-make-it-possible-to-translate-custom-sidebar-links-and-sections/299871 Custom sidebar sections can be translated manually or with AI.
5 lines
157 B
Ruby
Vendored
5 lines
157 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class SidebarSectionLocalizationSerializer < ApplicationSerializer
|
|
attributes :id, :sidebar_section_id, :locale, :title
|
|
end
|