mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-08 18:31:36 +01:00
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>
This commit is contained in:
parent
3769d2fbf4
commit
347984ac74
16 changed files with 0 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
// Two role-shaped sets, each re-enumerating the same objects. Adding a new
|
||||
// Sales table means editing both sets by hand; forgetting one creates a
|
||||
// subtle authorization bug where one role was updated and its sibling was not.
|
||||
|
||||
permissionset 50110 "Sales Order Processor"
|
||||
{
|
||||
Assignable = true;
|
||||
Permissions =
|
||||
tabledata Customer = IM,
|
||||
tabledata "Sales Header" = IMD,
|
||||
tabledata "Sales Line" = IMD;
|
||||
}
|
||||
|
||||
permissionset 50111 "Sales Viewer"
|
||||
{
|
||||
Assignable = true;
|
||||
Permissions =
|
||||
tabledata Customer = R,
|
||||
tabledata "Sales Header" = R,
|
||||
tabledata "Sales Line" = R;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue