mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-16 03:30:05 -05:00
16 lines
362 B
JavaScript
16 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);
|