mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
(function() {
|
|
|
|
/**
|
|
The default view in the admin section
|
|
|
|
@class AdminDashboardView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.AdminDashboardView = window.Discourse.View.extend({
|
|
templateName: 'admin/templates/dashboard'
|
|
});
|
|
|
|
}).call(this);
|