gab-social/app/presenters/instance_presenter.rb

20 lines
272 B
Ruby
Raw Normal View History

2019-07-02 03:10:25 -04:00
# frozen_string_literal: true
class InstancePresenter
delegate(
:site_title,
:site_short_description,
:site_description,
to: Setting
)
def version_number
GabSocial::Version
end
def source_url
GabSocial::Version.source_url
end
2019-07-02 03:10:25 -04:00
end