mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-03 13:33:32 -05:00
17 lines
261 B
Ruby
17 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LanguagePresenter < ActiveModelSerializers::Model
|
|
attributes :code, :name
|
|
|
|
def initialize(code)
|
|
super()
|
|
|
|
@code = code
|
|
@item = LanguagesHelper::SUPPORTED_LOCALES[code]
|
|
end
|
|
|
|
def name
|
|
@item[0]
|
|
end
|
|
end
|