Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
bardd
/
node-pt
like
0
Build error
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
almost 2 years ago
Raw
Download with hf CLI
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'
) {}