mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 03:17:53 -05:00
15 lines
312 B
JavaScript
15 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);
|