DEV: Rename param passed to updateNotificationLevel (#16289)

This commit is contained in:
Mark VanLandingham 2022-03-25 11:20:24 -05:00 committed by GitHub
parent a3563336db
commit 96719cbf4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -254,8 +254,8 @@ export default Controller.extend(CanCheckEmails, {
bootbox.dialog(message, buttons, { classes: "delete-user-modal" });
},
updateNotificationLevel(level) {
return this.model.updateNotificationLevel(level);
updateNotificationLevel(params) {
return this.model.updateNotificationLevel(params);
},
},
});