diff --git a/docs/source/glossary.rst b/docs/source/glossary.rst
index 0bbcce276f79bee067aef114ea5b0f0c3101ab39..432f73de9e8cdd7f7fd38c5e99f9b434fb1fd82c 100644
--- a/docs/source/glossary.rst
+++ b/docs/source/glossary.rst
@@ -51,6 +51,9 @@ Glossary of terms
   NET
     Network Entity Title: used for :term:`ISIS` routing.
 
+  OOB
+    Out-of-band access
+
   OSS
     Operational Support Systems
 
diff --git a/docs/source/module/workflows/router/activate_router.rst b/docs/source/module/workflows/router/activate_router.rst
new file mode 100644
index 0000000000000000000000000000000000000000..383502dd3d283c9bdcaf36d7b1cabae88fd06a29
--- /dev/null
+++ b/docs/source/module/workflows/router/activate_router.rst
@@ -0,0 +1,6 @@
+``gso.workflows.router.activate_router``
+========================================
+
+.. automodule:: gso.workflows.router.activate_router
+   :members:
+   :show-inheritance:
diff --git a/docs/source/module/workflows/router/index.rst b/docs/source/module/workflows/router/index.rst
index 11c3f71c734ac62f2e3ea194222eb6478816b335..e582a4402c8c17ba1292fcb1763cdcce193109a0 100644
--- a/docs/source/module/workflows/router/index.rst
+++ b/docs/source/module/workflows/router/index.rst
@@ -12,5 +12,8 @@ Submodules
    :maxdepth: 2
    :titlesonly:
 
+   activate_router
    create_router
+   redeploy_base_config
    terminate_router
+   update_ibgp_mesh
diff --git a/docs/source/module/workflows/router/redeploy_base_config.rst b/docs/source/module/workflows/router/redeploy_base_config.rst
new file mode 100644
index 0000000000000000000000000000000000000000..1348f983d743d9c174cc0c6629a1447b838234c6
--- /dev/null
+++ b/docs/source/module/workflows/router/redeploy_base_config.rst
@@ -0,0 +1,6 @@
+``gso.workflows.router.redeploy_base_config``
+=============================================
+
+.. automodule:: gso.workflows.router.redeploy_base_config
+   :members:
+   :show-inheritance:
diff --git a/docs/source/module/workflows/router/update_ibgp_mesh.rst b/docs/source/module/workflows/router/update_ibgp_mesh.rst
new file mode 100644
index 0000000000000000000000000000000000000000..213aacb758b8f7dad57260f4e9aa5d6e7d3edf12
--- /dev/null
+++ b/docs/source/module/workflows/router/update_ibgp_mesh.rst
@@ -0,0 +1,6 @@
+``gso.workflows.router.update_ibgp_mesh``
+=========================================
+
+.. automodule:: gso.workflows.router.update_ibgp_mesh
+   :members:
+   :show-inheritance:
diff --git a/gso/services/subscriptions.py b/gso/services/subscriptions.py
index e739546b6110e7df9af77f0c8ac9287d6d0c9619..e77b8d7ba60bfa869ac2a4b4f6638c8eaa55e8ab 100644
--- a/gso/services/subscriptions.py
+++ b/gso/services/subscriptions.py
@@ -85,7 +85,7 @@ def get_active_router_subscriptions(includes: list[str] | None = None) -> list[S
 def get_provisioning_router_subscriptions(includes: list[str] | None = None) -> list[SubscriptionType]:
     """Retrieve provisioning subscriptions specifically for routers.
 
-    :param list[str] | None includes: The fields to be included in the returned Subscription objects.
+    :param list[str] includes: The fields to be included in the returned Subscription objects.
     :return list[Subscription]: A list of router Subscription objects.
     """
     return get_subscriptions(product_type="Router", lifecycle=SubscriptionLifecycle.PROVISIONING, includes=includes)