mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
15 lines
360 B
JavaScript
15 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);
|
|
}
|
|
}
|
|
});
|