Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bardd
/
node-pt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
node-pt
/
src
/
modules
/
auth
/
local-auth.guard.ts
bardd
first commit
7b850b7
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
import
{
Injectable
}
from
'@nestjs/common'
;
import
{
AuthGuard
}
from
'@nestjs/passport'
;
@Injectable
()
export
class
LocalAuthGuard
extends
AuthGuard
(
'local'
) {}