UNPKG
@10abdullahbutt/auth-module
Version:
latest (1.0.0)
1.0.0
A NestJS-style authentication module with JWT and role-based access control.
@10abdullahbutt/auth-module
/
src
/
decorators
/
roles.decorator.ts
5 lines
(3 loc)
•
157 B
text/typescript
View Raw
1
2
3
4
5
import
{
SetMetadata
}
from
'@nestjs/common'
;
export
const
ROLES_KEY
=
'roles'
;
export
const
Roles
= (
...
roles
:
string
[]
) =>
SetMetadata
(
ROLES_KEY
, roles);