mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
22 lines
533 B
JavaScript
22 lines
533 B
JavaScript
/**
|
|
This controller supports the interface for listing screened URLs in the admin section.
|
|
|
|
@class AdminLogsScreenedUrlsController
|
|
@extends Ember.ArrayController
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
export default Ember.ArrayController.extend(Discourse.Presence, {
|
|
loading: false,
|
|
content: [],
|
|
|
|
show: function() {
|
|
var self = this;
|
|
this.set('loading', true);
|
|
Discourse.ScreenedUrl.findAll().then(function(result) {
|
|
self.set('content', result);
|
|
self.set('loading', false);
|
|
});
|
|
}
|
|
});
|