mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 05:33:44 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
30 lines
756 B
JavaScript
30 lines
756 B
JavaScript
import Component from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
import { tagName } from "@ember-decorators/component";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
@tagName("")
|
|
export default class AdminPenaltySimilarUsers extends Component {
|
|
@discourseComputed("penaltyType")
|
|
penaltyField(penaltyType) {
|
|
if (penaltyType === "suspend") {
|
|
return "can_be_suspended";
|
|
} else if (penaltyType === "silence") {
|
|
return "can_be_silenced";
|
|
}
|
|
}
|
|
|
|
@action
|
|
selectUserId(userId, event) {
|
|
if (!this.selectedUserIds) {
|
|
return;
|
|
}
|
|
|
|
if (event.target.checked) {
|
|
this.selectedUserIds.pushObject(userId);
|
|
} else {
|
|
this.selectedUserIds.removeObject(userId);
|
|
}
|
|
}
|
|
}
|