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...
17b82c4
node-pt
/
src
/
modules
/
auth
/
local-auth.guard.ts
Abdul Rehman
first commit
ae1ae66
8 months ago
raw
Copy download link
history
blame
163 Bytes
import
{
Injectable
}
from
'@nestjs/common'
;
import
{
AuthGuard
}
from
'@nestjs/passport'
;
@Injectable
()
export
class
LocalAuthGuard
extends
AuthGuard
(
'local'
) {}