fix(ci): use explicit registry token instead of GITHUB_TOKEN for docker login

This commit is contained in:
2026-03-03 12:54:43 +01:00
parent d82c836fcb
commit 13a484ce59
5 changed files with 166 additions and 20 deletions

View File

@@ -93,6 +93,40 @@ export const CrmAccounts: CollectionConfig = {
},
],
},
{
type: "row",
fields: [
{
name: "industry",
type: "text",
admin: {
width: "50%",
description: "Industry or category of this account (e.g. Messebauer, Handwerk).",
},
},
{
name: "websiteStatus",
type: "select",
options: [
{ label: "🟢 Good", value: "gut" },
{ label: "🟡 OK / Average", value: "ok" },
{ label: "🔴 Bad / Old", value: "schlecht" },
{ label: "❓ Unknown", value: "unknown" },
],
admin: {
width: "50%",
description: "Quality assessment of their current website.",
},
},
],
},
{
name: "notes",
type: "textarea",
admin: {
description: "Internal notes and research findings for this account.",
},
},
{
name: "assignedTo",
type: "relationship",