mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 09:26:52 +01:00
Promote security knowledge from community to Microsoft layer (#49)
* Promote security knowledge from community to Microsoft layer Pure git-mv relocation of the SECURITY domain from the community layer to the Microsoft layer. No content changes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Address review feedback on security knowledge promotion - do-not-grant-rights-beyond-a-users-entitlement.md: drop the See sample reference to a .good.al file that does not exist - Remove the 'Contributions welcome' boilerplate line from compose-permission-sets, prefer-oauth2, and protect-sensitive-data - protect-sensitive-data-in-temporary-tables: remove the pointless DeleteAll on the locally scoped temp buffer in the good sample and reword Best Practice to note local buffers are cleaned up automatically - Drop guard-bulk-operations-with-istemporary from the promotion; it stays in the community layer pending a decision on whether it is security Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> * Remove Contributions welcome boilerplate from do-not-grant article for consistency Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Jesper Schulz-Wedde <jesper.schulzwedde@microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
parent
7a678d1aff
commit
bfda67a95a
13 changed files with 1 additions and 12 deletions
|
|
@ -0,0 +1,28 @@
|
|||
table 50100 "Customer Feedback"
|
||||
{
|
||||
fields
|
||||
{
|
||||
field(1; "Feedback No."; Code[20])
|
||||
{
|
||||
// No DataClassification declared. Defaults to ToBeClassified.
|
||||
}
|
||||
field(2; "Contact Name"; Text[100])
|
||||
{
|
||||
DataClassification = ToBeClassified;
|
||||
}
|
||||
field(3; "Email"; Text[80])
|
||||
{
|
||||
// Personal data classified as CustomerContent understates privacy impact.
|
||||
DataClassification = CustomerContent;
|
||||
}
|
||||
field(4; "Feedback Text"; Text[2048])
|
||||
{
|
||||
DataClassification = ToBeClassified;
|
||||
}
|
||||
}
|
||||
|
||||
keys
|
||||
{
|
||||
key(PK; "Feedback No.") { Clustered = true; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue