mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
13 lines
301 B
JavaScript
13 lines
301 B
JavaScript
export default Ember.ArrayController.extend(Discourse.Presence, {
|
|
loading: false,
|
|
|
|
show: function() {
|
|
var self = this;
|
|
this.set('loading', true);
|
|
Discourse.ScreenedUrl.findAll().then(function(result) {
|
|
self.set('model', result);
|
|
self.set('loading', false);
|
|
});
|
|
}
|
|
});
|