Files
discourse/app/controllers/admin/versions_controller.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
157 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
class Admin::VersionsController < Admin::AdminController
def show
render json: DiscourseUpdates.check_version
2013-02-05 14:16:51 -05:00
end
2015-04-24 13:10:43 -04:00
end