oncall-engine/engine/apps/grafana_plugin/views/__init__.py
Matias Bordese 35f23cdcc6
Rework organization sync and grafana plugin engine backend (#4756)
Related to
https://github.com/grafana/oncall-private/issues/2806#issuecomment-2246286918.

Prepare engine for the backend plugin enablement/migration:

 - Refactor sync code
- Improve plugin user authentication to set up user on-the-fly (when
missing)
- Implement v2 endpoints for install, sync and status (to be used via
the backend plugin)

(most of the changes come from
https://github.com/grafana/oncall/pull/4657; backport all engine changes
that keep backwards compatibility)
2024-07-31 16:12:56 +00:00

8 lines
426 B
Python

from .install import InstallView # noqa: F401
from .install_v2 import InstallV2View # noqa: F401
from .recaptcha import RecaptchaView # noqa: F401
from .self_hosted_install import SelfHostedInstallView # noqa: F401
from .status import StatusView # noqa: F401
from .status_v2 import StatusV2View # noqa: F401
from .sync_organization import SyncOrganizationView # noqa: F401
from .sync_v2 import SyncV2View # noqa: F401