-
Notifications
You must be signed in to change notification settings - Fork 1
Customize directory structure #464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1d9a2f8
feat: add base file for refactoring
hyukychang 06930b9
fix: erase optional
hyukychang 758f00b
feat: update pipfile
hyukychang 4eff0f4
fix: NewAra -> Ara
hyukychang 940aa8c
fix: typo
hyukychang 9048372
fix: remove unnecessary import
hyukychang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -38,6 +38,7 @@ uritemplate = "*" | |
tqdm = "*" | ||
lxml = "*" | ||
django-ses = "*" | ||
pydantic = "*" | ||
|
||
[dev-packages] | ||
black = "*" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
Empty file.
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
class AuthLoggedInUser: | ||
# TODO | ||
pass |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
from enum import IntEnum, unique | ||
|
||
|
||
@unique | ||
class HttpStatusCode(IntEnum): | ||
CONTINUE = 100 | ||
SWITCHING_PROTOCOLS = 101 | ||
OK = 200 | ||
CREATED = 201 | ||
ACCEPTED = 202 | ||
NON_AUTHORITATIVE_INFORMATION = 203 | ||
NO_CONTENT = 204 | ||
RESET_CONTENT = 205 | ||
PARTIAL_CONTENT = 206 | ||
MULTI_STATUS = 207 | ||
ALREADY_REPORTED = 208 | ||
IM_USED = 226 | ||
MULTIPLE_CHOICES = 300 | ||
MOVED_PERMANENTLY = 301 | ||
FOUND = 302 | ||
SEE_OTHER = 303 | ||
NOT_MODIFIED = 304 | ||
USE_PROXY = 305 | ||
RESERVED = 306 | ||
TEMPORARY_REDIRECT = 307 | ||
PERMANENT_REDIRECT = 308 | ||
BAD_REQUEST = 400 | ||
UNAUTHORIZED = 401 | ||
PAYMENT_REQUIRED = 402 | ||
FORBIDDEN = 403 | ||
NOT_FOUND = 404 | ||
METHOD_NOT_ALLOWED = 405 | ||
NOT_ACCEPTABLE = 406 | ||
PROXY_AUTHENTICATION_REQUIRED = 407 | ||
REQUEST_TIMEOUT = 408 | ||
CONFLICT = 409 | ||
GONE = 410 | ||
LENGTH_REQUIRED = 411 | ||
PRECONDITION_FAILED = 412 | ||
REQUEST_ENTITY_TOO_LARGE = 413 | ||
REQUEST_URI_TOO_LONG = 414 | ||
UNSUPPORTED_MEDIA_TYPE = 415 | ||
REQUESTED_RANGE_NOT_SATISFIABLE = 416 | ||
EXPECTATION_FAILED = 417 | ||
IM_A_TEAPOT = 418 | ||
UNPROCESSABLE_ENTITY = 422 | ||
LOCKED = 423 | ||
FAILED_DEPENDENCY = 424 | ||
UPGRADE_REQUIRED = 426 | ||
PRECONDITION_REQUIRED = 428 | ||
TOO_MANY_REQUESTS = 429 | ||
REQUEST_HEADER_FIELDS_TOO_LARGE = 431 | ||
UNAVAILABLE_FOR_LEGAL_REASONS = 451 | ||
INTERNAL_SERVER_ERROR = 500 | ||
NOT_IMPLEMENTED = 501 | ||
BAD_GATEWAY = 502 | ||
SERVICE_UNAVAILABLE = 503 | ||
GATEWAY_TIMEOUT = 504 | ||
HTTP_VERSION_NOT_SUPPORTED = 505 | ||
VARIANT_ALSO_NEGOTIATES = 506 | ||
INSUFFICIENT_STORAGE = 507 | ||
LOOP_DETECTED = 508 | ||
BANDWIDTH_LIMIT_EXCEEDED = 509 | ||
NOT_EXTENDED = 510 | ||
NETWORK_AUTHENTICATION_REQUIRED = 511 |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from typing import Any | ||
|
||
from pydantic import BaseModel | ||
|
||
|
||
class PaginatedData(BaseModel): | ||
count: int | ||
next: str | None | ||
previous: str | None | ||
results: list[Any] | ||
|
||
|
||
class NesAraPagination: | ||
pass |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from typing import TypeVar | ||
|
||
from django.contrib.auth import get_user_model | ||
from django.http import HttpRequest | ||
|
||
User = TypeVar("User", bound=get_user_model()) | ||
|
||
|
||
class LoggedInUserRequest(HttpRequest): | ||
user: User |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.