mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
12 lines
301 B
JavaScript
12 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);
|
|
});
|
|
}
|
|
});
|