mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 10:58:31 -05:00
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
import { popupAjaxError } from 'discourse/lib/ajax-error';
|
|
|
|
export default Ember.Controller.extend({
|
|
actions: {
|
|
loadMore() {
|
|
this.get('model').loadMore();
|
|
},
|
|
|
|
ping() {
|
|
ajax(`/admin/web_hooks/${this.get('model.extras.web_hook_id')}/ping`, {type: 'POST'}).catch(popupAjaxError);
|
|
}
|
|
}
|
|
});
|