discourse/app/models/discourse_version_check.rb

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

17 lines
433 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DiscourseVersionCheck
2014-02-17 11:44:28 -05:00
include ActiveModel::Model
attr_accessor :latest_version,
:critical_updates,
:installed_version,
:installed_sha,
:installed_describe,
:missing_versions_count,
:git_branch,
:updated_at,
:version_check_pending,
:stale_data
end