mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 10:04:34 +08:00
16 lines
305 B
JavaScript
16 lines
305 B
JavaScript
(function() {
|
|
|
|
/**
|
|
A view for showing a user in the admin section
|
|
|
|
@class AdminUserView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.AdminUserView = window.Discourse.View.extend({
|
|
templateName: 'admin/templates/user'
|
|
});
|
|
|
|
}).call(this);
|