Dashboard
Yours to answer
With a studio Theirs to answer. You will be told if one goes unanswered.
All Tickets
← Back to tickets
Feature Requests
← Back to requests
Dev Tracker
Add a card directly
Backlog
Done
Progress Tree
Every section of Aradia Time, rolled up from Dev Tracker cards tagged to it. Tag a card to a section from the Dev Tracker page and it counts here automatically — nothing to sync.
Add a section
Changelog
Write an entry
Tenants
Add Tenant
Settings
Notifications
Every studio's support now comes here and nowhere else, so it is worth being told. Push is per device — enrol each phone or laptop you want buzzed, and removing one leaves the others alone.
Connected Apps
Each app uses its API key to send tickets to this dashboard. Add the key to the app's environment variables.
Add New App
Integration Guide
To connect an app to this dashboard, add the following to the app's support submission endpoint:
// After saving the support message locally, forward to dashboard:
fetch('YOUR_DASHBOARD_URL/api/hooks/ticket', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_APP_API_KEY'
},
body: JSON.stringify({
externalId: localMessageId,
tenantId: tenantId,
fromEmail: userEmail,
fromName: userName,
type: 'message', // or 'bug'
subject: subject,
body: messageBody
})
});