-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(sentry_apps): Move SentryAppInstallationForProvider to sentry_a…
…pps (#77738) migrate SentryAppInstallationForProvider to sentry_apps! [X] model [] tests - N/A [] typing - N/A [] getsentry shim - N/A issue ref(#73857)
- Loading branch information
1 parent
fbacb2d
commit 460232f
Showing
12 changed files
with
34 additions
and
33 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
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
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 |
---|---|---|
@@ -1,12 +1,6 @@ | ||
__all__ = ( | ||
"SentryApp", | ||
"SentryAppInstallationForProvider", | ||
) | ||
__all__ = ("SentryApp",) | ||
|
||
|
||
# REQUIRED for migrations to run. | ||
from sentry.integrations.types import ExternalProviders # NOQA | ||
from sentry.models.integrations.sentry_app_installation_for_provider import ( | ||
SentryAppInstallationForProvider, | ||
) | ||
from sentry.sentry_apps.models.sentry_app import SentryApp |
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,6 +1,13 @@ | ||
from .sentry_app import SentryApp | ||
from .sentry_app_component import SentryAppComponent | ||
from .sentry_app_installation import SentryAppInstallation | ||
from .sentry_app_installation_for_provider import SentryAppInstallationForProvider | ||
from .sentry_app_installation_token import SentryAppInstallationToken | ||
|
||
__all__ = ("SentryApp", "SentryAppInstallationToken", "SentryAppInstallation", "SentryAppComponent") | ||
__all__ = ( | ||
"SentryApp", | ||
"SentryAppInstallationToken", | ||
"SentryAppInstallation", | ||
"SentryAppInstallationForProvider", | ||
"SentryAppComponent", | ||
) |
File renamed without changes.
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
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
4 changes: 2 additions & 2 deletions
4
tests/sentry/sentry_apps/models/test_sentryappinstallationtoken.py
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