-
Notifications
You must be signed in to change notification settings - Fork 44
Description
It would be very handy to be able to group domains by a tag system. By using a tags database table, tags can be referenced:
- when making a summary report
- when filtering reports
- when editing domains or listing domains
- along with Overall summary when generating reports for multiple domains #141 and Error report summary #142 and charts in Free DMARC management from Cloudflare #79 with a dashboard.
Here are two design outlines, if you think either would be useful.
Simply creating a tags table with an id and name. And a linking table domains_tags with domain_id and tag_id. This allows for a domain to be tagged in multiple ways at once. Eg., by customer, by status, or by report-frequency. Such as example.com having tags travel_agency, watch_closely, daily_reports. Or even daily_reports_b if they want the daily reports broken up separately in to different groups separate from client name.
Alternatively, a tags table and a tag_id in the domains table would allow a single tag.
Finally, a filter for domains without a tag in the domains view, if not also reports and summary, would be a great QOL feature.