https://github.com/flytrap/flytrap-auth
https://github.com/flytrap/flytrap-auth
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flytrap/flytrap-auth
- Owner: flytrap
- Created: 2018-02-03T04:00:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T18:41:18.000Z (about 5 years ago)
- Last Synced: 2025-09-28T00:18:22.966Z (9 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Django base package
==============
## adduser
```
url('^api/auth/', include('flytrap.auth.account.token.urls'))
```
## set auth
```
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'flytrap.auth.account.token.auth.TokenAuthentication',
),
```
## don't signup
add to setting
```
SHOW_SIGNUP = False
```