mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
Ingests net-new /community knowledge from BC Code Intelligence, surviving the admission test, gray-zone salvage, and dedup against the full corpus. Domains: ui (6), error-handling (3), performance (2), upgrade (1), appsource (1), security (1), telemetry (1). The two BC24 No. Series migration drafts are merged into one article. Adds good/bad AL samples for the clean-fit articles (error-handling, performance, security, telemetry). UI and appsource remain knowledge-only. Validator and knowledge-index checks pass (207 articles). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
579 B
AL
21 lines
579 B
AL
table 50134 "Api Setup Bad Sample"
|
|
{
|
|
fields
|
|
{
|
|
field(1; "Primary Key"; Code[10]) { }
|
|
|
|
// A secret in an ordinary Text field is readable by anyone with table
|
|
// permission, ships in RapidStart packages and Excel exports, and
|
|
// appears in record snapshots. No DataClassification tag makes it safe;
|
|
// it belongs in IsolatedStorage instead.
|
|
field(10; "API Key"; Text[250])
|
|
{
|
|
DataClassification = CustomerContent;
|
|
}
|
|
}
|
|
|
|
keys
|
|
{
|
|
key(PK; "Primary Key") { Clustered = true; }
|
|
}
|
|
}
|