@RequestMapping("level1")
  public List<Category> level1() {

    return categoryRepository.findByParentIsNullAndEnabledIsTrue();
  }