Renan Souza c44c220254 Update Ownable2Step docs (#4384) %!s(int64=2) %!d(string=hai) anos
..
AccessControl.sol b425a72240 Replace revert strings with custom errors (#4261) %!s(int64=2) %!d(string=hai) anos
AccessControlDefaultAdminRules.sol b425a72240 Replace revert strings with custom errors (#4261) %!s(int64=2) %!d(string=hai) anos
AccessControlEnumerable.sol df2778f38e Remove override interface implementations (#4315) %!s(int64=2) %!d(string=hai) anos
IAccessControl.sol b425a72240 Replace revert strings with custom errors (#4261) %!s(int64=2) %!d(string=hai) anos
IAccessControlDefaultAdminRules.sol b425a72240 Replace revert strings with custom errors (#4261) %!s(int64=2) %!d(string=hai) anos
IAccessControlEnumerable.sol 7bb5592ad5 Bump minimum pragma version to `0.8.19` (#4288) %!s(int64=2) %!d(string=hai) anos
Ownable.sol a7a94c7746 Update comment to reflect code logic in Ownable.sol (#4369) %!s(int64=2) %!d(string=hai) anos
Ownable2Step.sol c44c220254 Update Ownable2Step docs (#4384) %!s(int64=2) %!d(string=hai) anos
README.adoc 0f10efe232 Remove code in preparation for v5.0 (#4258) %!s(int64=2) %!d(string=hai) anos

README.adoc

= Access Control

[.readme-notice]
NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/access

This directory provides ways to restrict who can access the functions of a contract or when they can do it.

- {AccessControl} provides a general role based access control mechanism. Multiple hierarchical roles can be created and assigned each to multiple accounts.
- {Ownable} is a simpler mechanism with a single owner "role" that can be assigned to a single account. This simpler mechanism can be useful for quick tests but projects with production concerns are likely to outgrow it.

== Authorization

{{Ownable}}

{{Ownable2Step}}

{{IAccessControl}}

{{AccessControl}}

{{IAccessControlEnumerable}}

{{AccessControlEnumerable}}

{{AccessControlDefaultAdminRules}}