mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
d2596c3c4c
boolean to avoid locking yourself out by setting access_password to empty string. Minor UI tweaks.
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
/**
|
|
The default view in the admin section
|
|
|
|
@class AdminDashboardView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.AdminDashboardView = Discourse.View.extend({
|
|
templateName: 'admin/templates/dashboard'
|
|
});
|
|
|
|
|