Adds version to about/more and API (#2181)

* Adds version.

* Cleans up code.

* Removes standalone endpoint and adds version to instance endpoint.

* Addresses feedback from #2181.
This commit is contained in:
Ash Furrow 2017-04-20 21:30:59 -04:00 committed by Eugen
parent 25d2853db2
commit a0ed88a99b
7 changed files with 17 additions and 0 deletions

View file

@ -25,4 +25,8 @@ class InstancePresenter
def domain_count
Rails.cache.fetch('distinct_domain_count') { Account.distinct.count(:domain) }
end
def version_number
Mastodon::VERSION
end
end

View file

@ -0,0 +1,4 @@
.panel
.panel-header= t 'about.version'
.panel-body
%strong= version.version_number

View file

@ -30,3 +30,4 @@
.sidebar
= render 'contact', contact: @instance_presenter
= render 'links'
= render 'version', version: @instance_presenter

View file

@ -4,3 +4,4 @@ node(:uri) { site_hostname }
node(:title) { Setting.site_title }
node(:description) { Setting.site_description }
node(:email) { Setting.site_contact_email }
node(:version) { Mastodon::VERSION }