2023-04-24 22:30:51 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteThemeSerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
|
|
:remote_url,
|
|
|
|
:remote_version,
|
|
|
|
:local_version,
|
|
|
|
:commits_behind,
|
|
|
|
:branch,
|
|
|
|
:remote_updated_at,
|
|
|
|
:updated_at,
|
|
|
|
:github_diff_link,
|
|
|
|
:last_error_text,
|
|
|
|
:is_git?,
|
|
|
|
:license_url,
|
|
|
|
:about_url,
|
|
|
|
:authors,
|
|
|
|
:theme_version,
|
|
|
|
:minimum_discourse_version,
|
|
|
|
:maximum_discourse_version
|
|
|
|
|
2024-11-26 11:53:10 +08:00
|
|
|
# ActiveModelSerializer has some pretty nutty logic where it tries to find
|
|
|
|
# the path here from action dispatch, tell it not to
|
2023-04-24 22:30:51 +08:00
|
|
|
def about_url
|
2024-11-26 11:53:10 +08:00
|
|
|
object.about_url if UrlHelper.is_valid_url?(object.about_url)
|
|
|
|
end
|
|
|
|
|
|
|
|
def license_url
|
|
|
|
object.license_url if UrlHelper.is_valid_url?(object.license_url)
|
2023-04-24 22:30:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_github_diff_link?
|
|
|
|
github_diff_link.present?
|
|
|
|
end
|
|
|
|
end
|