I'm following documentation for adding custom entities in Sulu:
https://docs.sulu.io/en/2.2/book/extend-admin.html#list-configuration-and-controller
and it describes how to create XML file that additionally describes my custom entity type, but it's not mentioned where to place that file and how to name it?
<?xml version="1.0" ?>
<list xmlns="http://schemas.sulu.io/list-builder/list">
<key>events</key>
<properties>
<property name="id" visibility="no" translation="sulu_admin.id">
<field-name>id</field-name>
<entity-name>App\Entity\Event</entity-name>
</property>
...
So how to name and where to place that XML file please?