minor: Rename function to get_active_humans().

Saying `human_persons` is a bit redundant (although
kind of an artifact of our legacy use of `person`
when we really mean `user`.)
This commit is contained in:
Steve Howell
2020-03-21 17:09:45 +00:00
committed by Tim Abbott
parent 26daeeb358
commit 7ac5d0602b
4 changed files with 6 additions and 6 deletions

View File

@@ -389,7 +389,7 @@ exports.set_up = function () {
const li = $(e.currentTarget).closest('li');
const bot_id = parseInt(li.find('.bot_info').attr('data-user-id'), 10);
const bot = bot_data.get(bot_id);
const users_list = people.get_active_human_persons();
const users_list = people.get_active_humans();
$("#edit_bot").empty();
$("#edit_bot").append(render_edit_bot({
bot: bot,