Fix some imports now hatchway is third party
This commit is contained in:
parent
8adc17c5ea
commit
91738748ec
|
@ -5,9 +5,9 @@ from typing import Any, Generic, Protocol, TypeVar
|
||||||
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.http import HttpRequest
|
from django.http import HttpRequest
|
||||||
|
from hatchway.http import ApiResponse
|
||||||
|
|
||||||
from activities.models import PostInteraction
|
from activities.models import PostInteraction
|
||||||
from hatchway.http import ApiResponse
|
|
||||||
|
|
||||||
T = TypeVar("T")
|
T = TypeVar("T")
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
|
from hatchway import api_view
|
||||||
|
|
||||||
from api import schemas
|
from api import schemas
|
||||||
from api.decorators import identity_required
|
from api.decorators import identity_required
|
||||||
from hatchway import api_view
|
|
||||||
from users.models import Announcement
|
from users.models import Announcement
|
||||||
from users.services import AnnouncementService
|
from users.services import AnnouncementService
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
from hatchway import api_view
|
||||||
|
|
||||||
from activities.models import Emoji
|
from activities.models import Emoji
|
||||||
from api.schemas import CustomEmoji
|
from api.schemas import CustomEmoji
|
||||||
from hatchway import api_view
|
|
||||||
|
|
||||||
|
|
||||||
@api_view.get
|
@api_view.get
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
from api.decorators import identity_required
|
|
||||||
from hatchway import api_view
|
from hatchway import api_view
|
||||||
|
|
||||||
|
from api.decorators import identity_required
|
||||||
|
|
||||||
|
|
||||||
@identity_required
|
@identity_required
|
||||||
@api_view.get
|
@api_view.get
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
from hatchway import api_view
|
||||||
|
|
||||||
from activities.models import Post
|
from activities.models import Post
|
||||||
from api import schemas
|
from api import schemas
|
||||||
from core.models import Config
|
from core.models import Config
|
||||||
from hatchway import api_view
|
|
||||||
from takahe import __version__
|
from takahe import __version__
|
||||||
from users.models import Domain, Identity
|
from users.models import Domain, Identity
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
from django.http import HttpRequest
|
from django.http import HttpRequest
|
||||||
|
from hatchway import ApiResponse, api_view
|
||||||
|
|
||||||
from activities.models import TimelineEvent
|
from activities.models import TimelineEvent
|
||||||
from activities.services import TimelineService
|
from activities.services import TimelineService
|
||||||
from api import schemas
|
from api import schemas
|
||||||
from api.decorators import identity_required
|
from api.decorators import identity_required
|
||||||
from api.pagination import MastodonPaginator, PaginatingApiResponse, PaginationResult
|
from api.pagination import MastodonPaginator, PaginatingApiResponse, PaginationResult
|
||||||
from hatchway import ApiResponse, api_view
|
|
||||||
|
|
||||||
|
|
||||||
@identity_required
|
@identity_required
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
from typing import Literal
|
from typing import Literal
|
||||||
|
|
||||||
|
from hatchway import Field, api_view
|
||||||
|
|
||||||
from activities.models import PostInteraction
|
from activities.models import PostInteraction
|
||||||
from activities.services.search import SearchService
|
from activities.services.search import SearchService
|
||||||
from api import schemas
|
from api import schemas
|
||||||
from api.decorators import identity_required
|
from api.decorators import identity_required
|
||||||
from hatchway import Field, api_view
|
|
||||||
|
|
||||||
|
|
||||||
@identity_required
|
@identity_required
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
from django.http import HttpRequest
|
from django.http import HttpRequest
|
||||||
|
from hatchway import ApiError, ApiResponse, api_view
|
||||||
|
|
||||||
from activities.models import Post
|
from activities.models import Post
|
||||||
from activities.services import TimelineService
|
from activities.services import TimelineService
|
||||||
|
@ -6,7 +7,6 @@ from api import schemas
|
||||||
from api.decorators import identity_required
|
from api.decorators import identity_required
|
||||||
from api.pagination import MastodonPaginator, PaginatingApiResponse, PaginationResult
|
from api.pagination import MastodonPaginator, PaginatingApiResponse, PaginationResult
|
||||||
from core.models import Config
|
from core.models import Config
|
||||||
from hatchway import ApiError, ApiResponse, api_view
|
|
||||||
|
|
||||||
|
|
||||||
@identity_required
|
@identity_required
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from django.http import HttpRequest
|
from django.http import HttpRequest
|
||||||
|
from hatchway import api_view
|
||||||
|
|
||||||
from api import schemas
|
from api import schemas
|
||||||
from api.decorators import identity_required
|
from api.decorators import identity_required
|
||||||
from hatchway import api_view
|
|
||||||
|
|
||||||
|
|
||||||
@identity_required
|
@identity_required
|
||||||
|
|
Loading…
Reference in New Issue