mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-17 23:57:14 +01: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
|