mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-13 05:35:39 +02:00
902a46e07c
- добавлены недостающие описания - исправлены переименованные описания
608 B
608 B
The "IsInRole" method was used
To check access rights in the code, use the AccessRight method.
Noncompliant Code Example
If IsInRole("AddClient") Then ...
Compliant Solution
If AccessRight("Add", Metadata.Catalogs.Client) Then ...
This approach allows you to increase the code robustness when configuration roles are revised.