# The copy at `/dashboard/export`, which is words and routes and nothing else. # # Read at build time by the `declare!` in `src/quasi/export_portal.rs`. Editing # this file is editing the page. See `content/policy.toml` for the split this # follows. # # `filename` is what the reader's disk ends up with, and it is the name the # endpoint itself sets in `Content-Disposition` rather than a shorter one # invented here: a `data-saves` control renames the download, so the two # disagreeing means the same export arrives under two names depending on which # control started it. # # The order is the order the cards render in, which is the order the shipped # template listed them. [[direct]] title = "Projects & Items" description = "All your project and item metadata including titles, descriptions, prices, and tags." meta = "JSON format" route = "/api/export/projects" filename = "makenot-work-projects.json" [[direct]] title = "Sales History" description = "Record of all sales you've made, including dates, amounts, and item titles." meta = "CSV format" route = "/api/export/sales" filename = "makenot-work-sales.csv" [[direct]] title = "Collaborator Payouts" description = "Record of all revenue shared with collaborators on your projects, both incoming and outgoing." meta = "CSV format" route = "/api/export/splits" filename = "makenot-work-splits.csv" [[direct]] title = "Purchase History" description = "Record of all items you've purchased, for your personal records." meta = "CSV format" route = "/api/export/purchases" filename = "makenot-work-purchases.csv" [[direct]] title = "Followers & Members" description = "List of users who follow you or have memberships to your projects." meta = "CSV format" route = "/api/export/followers" filename = "makenot-work-followers.csv"