checkAccessLevelExists
This view function checks if a specific access level exists for a given event. It takes two parameters:
_eventId
: The unique identifier for the event._accessLevel
: The access level to be checked for existence.
Explanation:
The function retrieves all access levels associated with the event using the getAccessLevelsFromEventId
function. Then, it iterates through these access levels to check if the specified access level exists among them. It compares the keccak256 hashes of the access level strings to determine a match. If a match is found, indicating that the access level exists for the event, the function returns true
; otherwise, it returns false
.
Last updated