mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
(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);
|