Enum representing different types of middleware roles.
This enum is used to define and control access levels or roles
within the application through middleware functions.
AUTH: Represents a middleware that requires standard authentication.
AUTH_SUPERADMIN: Represents a middleware that requires super-admin level authentication.
NO_AUTH: Represents a middleware that does not require authentication to access.
Enum representing different types of middleware roles.
This enum is used to define and control access levels or roles within the application through middleware functions.
AUTH: Represents a middleware that requires standard authentication. AUTH_SUPERADMIN: Represents a middleware that requires super-admin level authentication. NO_AUTH: Represents a middleware that does not require authentication to access.