mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
15 lines
305 B
JavaScript
15 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);
|