1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-03-04 16:15:57 +02:00

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.

See