Is there a way to get a list of all user accounts that were created in the last

Is there a way to get a list of all user accounts that were created in the last hour, day, week, etc? Bonus points if it doesn't involve installing a plugin.

OriginalPostID-178474

OriginalPostID-178474

  Discussion posts and replies are publicly visible

Parents
  • here is a start to the SAIL required for this. This will give you a list of users created AFTER the specified date and time.

    =load(
    local!date: now(),
    a!formLayout(
    firstColumnContents: {
    a!dateTimeField(
    label:"date and time",
    value:local!date,
    saveInto: local!date
    ),
    a!textfield(
    value:index(fn!getdistinctusers(topeople(cons!users_type)),where(apply(user(_,"created"),fn!getdistinctusers(topeople(cons!users_type)))>local!date)
    ),
    label: "list of users",
    readOnly: true
    )
    }
    ))
Reply
  • here is a start to the SAIL required for this. This will give you a list of users created AFTER the specified date and time.

    =load(
    local!date: now(),
    a!formLayout(
    firstColumnContents: {
    a!dateTimeField(
    label:"date and time",
    value:local!date,
    saveInto: local!date
    ),
    a!textfield(
    value:index(fn!getdistinctusers(topeople(cons!users_type)),where(apply(user(_,"created"),fn!getdistinctusers(topeople(cons!users_type)))>local!date)
    ),
    label: "list of users",
    readOnly: true
    )
    }
    ))
Children
No Data