To group and organize "Searches and reports" we modify defaults.xml in the Navigation Menus. Can the same be done to organize "Dashboards and Views". If so, could you please provide me an example or reference?
I tried adding code below under "Dashboards and Views" but it ended up pulling the searches and reports but not the dashboards.
Ex:
<collection label="SOC">
<saved source="unclassified" match="SOC" />
</collection>
<collection label="Threat">
<saved source="unclassified" match="Threat" />
</collection>
Thanks!
Yes, but you need to change saved
to view
. Example:
<collection label="SOC">
<saved source="unclassified" match="SOC" />
</collection>
<collection label="Threat">
<view source="unclassified" match="Threat" />
</collection>
Yes, but you need to change saved
to view
. Example:
<collection label="SOC">
<saved source="unclassified" match="SOC" />
</collection>
<collection label="Threat">
<view source="unclassified" match="Threat" />
</collection>
Perfect! Thanks