forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auth for REST API (api/v1/auth/*) (cvat-ai#622)
* Added trivial login/logout/register * Auth methods for REST API. - api/v1/auth/login - api/v1/auth/logout For basic auth only: - api/v1/auth/register - api/v1/auth/password/* * Add info about auth for REST API into CHANGELOG.md * Add pylintrc for codacy, updated pylint and its dependecies. * Add token authorization, renamed cvat.js to cvat-core in all places. * Implemented register method in cvat-core * Added first_name and last_name to RegisterSerializer.
- Loading branch information
Showing
32 changed files
with
707 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
exclude_paths: | ||
- '**/3rdparty/**' | ||
- '**/engine/js/cvat.js' | ||
- '**/engine/js/cvat-core.min.js' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ node_modules | |
|
||
# Ignore temporary files | ||
docker-compose.override.yml | ||
/.vscode | ||
__pycache__ | ||
*.pyc | ||
._* | ||
|
Oops, something went wrong.