mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:50:45 +08:00
26 lines
624 B
JavaScript
26 lines
624 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
import UploadMixin from "discourse/mixins/upload";
|
|
|
|
export default Ember.Component.extend(UploadMixin, {
|
|
type: "csv",
|
|
classNames: "watched-words-uploader",
|
|
uploadUrl: "/admin/logs/watched_words/upload",
|
|
addDisabled: Ember.computed.alias("uploading"),
|
|
|
|
validateUploadedFilesOptions() {
|
|
return { csvOnly: true };
|
|
},
|
|
|
|
@computed("actionKey")
|
|
data(actionKey) {
|
|
return { action_key: actionKey };
|
|
},
|
|
|
|
uploadDone() {
|
|
if (this) {
|
|
bootbox.alert(I18n.t("admin.watched_words.form.upload_successful"));
|
|
this.done();
|
|
}
|
|
}
|
|
});
|