Skip to content

Commit

Permalink
Finalize Drift Manager PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
smk4664 committed Jan 8, 2025
1 parent d46a638 commit 81f8320
Show file tree
Hide file tree
Showing 3 changed files with 626 additions and 48 deletions.
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ nav:
- Contributing to the App: "dev/contributing.md"
- Development Environment: "dev/dev_environment.md"
- Release Checklist: "dev/release_checklist.md"
- Architecture Decision Records: "dev/arch_decision.md"
- Code Reference:
- "dev/code_reference/index.md"
- Package: "dev/code_reference/package.md"
Expand Down
6 changes: 2 additions & 4 deletions nautobot_secrets_providers/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@
from django.views.generic import RedirectView
from nautobot.apps.urls import NautobotUIViewSetRouter


# Uncomment the following line if you have views to import
# from nautobot_secrets_providers import views
from nautobot_secrets_providers import views


router = NautobotUIViewSetRouter()

# Here is an example of how to register a viewset, you will want to replace views.NautobotSecretsProvidersUIViewSet with your viewset
# router.register("nautobot_secrets_providers", views.NautobotSecretsProvidersUIViewSet)


urlpatterns = [
path("", views.SecretsProvidersHomeView.as_view(), name="home"),
path("docs/", RedirectView.as_view(url=static("nautobot_secrets_providers/docs/index.html")), name="docs"),
]

Expand Down
Loading

0 comments on commit 81f8320

Please sign in to comment.