// BEGIN ACTION
  public String listGroup() throws Exception {
    this.groupList = groupService.findAll();

    setCantDoCrud(isUserNotMaker());

    writeAuditLog("Viewed group list.", form);

    return LIST;
  }
  public String populateGroups() throws Exception {
    this.groupList = groupService.findAll();

    return SUCCESS;
  }