discourse/app/assets/javascripts/admin/controllers/admin_dashboard_controller.js

17 lines
362 B
JavaScript
Raw Normal View History

(function() {
/**
This controller supports the default interface when you enter the admin section.
@class AdminDashboardController
@extends Ember.Controller
@namespace Discourse
@module Discourse
**/
window.Discourse.AdminDashboardController = Ember.Controller.extend({
loading: true,
versionCheck: null
});
}).call(this);