diff --git a/authentik/admin/views/applications.py b/authentik/admin/views/applications.py index f80eda369..37eab8216 100644 --- a/authentik/admin/views/applications.py +++ b/authentik/admin/views/applications.py @@ -29,6 +29,7 @@ class ApplicationCreateView( form_class = ApplicationForm permission_required = "authentik_core.add_application" + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Application") @@ -61,6 +62,7 @@ class ApplicationUpdateView( form_class = ApplicationForm permission_required = "authentik_core.change_application" + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Application") @@ -73,5 +75,6 @@ class ApplicationDeleteView( model = Application permission_required = "authentik_core.delete_application" + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Application") diff --git a/authentik/admin/views/events_notifications_rules.py b/authentik/admin/views/events_notifications_rules.py index 66577dc40..b1caa9df8 100644 --- a/authentik/admin/views/events_notifications_rules.py +++ b/authentik/admin/views/events_notifications_rules.py @@ -26,6 +26,7 @@ class NotificationRuleCreateView( form_class = NotificationRuleForm permission_required = "authentik_events.add_NotificationRule" + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Notification Rule") @@ -42,6 +43,7 @@ class NotificationRuleUpdateView( form_class = NotificationRuleForm permission_required = "authentik_events.change_NotificationRule" + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Notification Rule") @@ -54,5 +56,6 @@ class NotificationRuleDeleteView( model = NotificationRule permission_required = "authentik_events.delete_NotificationRule" + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Notification Rule") diff --git a/authentik/admin/views/events_notifications_transports.py b/authentik/admin/views/events_notifications_transports.py index a5c4cd990..f13c3340c 100644 --- a/authentik/admin/views/events_notifications_transports.py +++ b/authentik/admin/views/events_notifications_transports.py @@ -25,7 +25,7 @@ class NotificationTransportCreateView( model = NotificationTransport form_class = NotificationTransportForm permission_required = "authentik_events.add_notificationtransport" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Notification Transport") @@ -41,7 +41,7 @@ class NotificationTransportUpdateView( model = NotificationTransport form_class = NotificationTransportForm permission_required = "authentik_events.change_notificationtransport" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Notification Transport") @@ -53,6 +53,6 @@ class NotificationTransportDeleteView( model = NotificationTransport permission_required = "authentik_events.delete_notificationtransport" - + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Notification Transport") diff --git a/authentik/admin/views/outposts.py b/authentik/admin/views/outposts.py index fc160b901..17aced477 100644 --- a/authentik/admin/views/outposts.py +++ b/authentik/admin/views/outposts.py @@ -28,7 +28,7 @@ class OutpostCreateView( model = Outpost form_class = OutpostForm permission_required = "authentik_outposts.add_outpost" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Outpost") @@ -51,7 +51,7 @@ class OutpostUpdateView( model = Outpost form_class = OutpostForm permission_required = "authentik_outposts.change_outpost" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Outpost") @@ -61,6 +61,6 @@ class OutpostDeleteView(LoginRequiredMixin, PermissionRequiredMixin, DeleteMessa model = Outpost permission_required = "authentik_outposts.delete_outpost" - + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Outpost") diff --git a/authentik/admin/views/property_mappings.py b/authentik/admin/views/property_mappings.py index f9b2fc7d7..578b63f91 100644 --- a/authentik/admin/views/property_mappings.py +++ b/authentik/admin/views/property_mappings.py @@ -32,7 +32,7 @@ class PropertyMappingCreateView( model = PropertyMapping permission_required = "authentik_core.add_propertymapping" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Property Mapping") @@ -47,7 +47,7 @@ class PropertyMappingUpdateView( model = PropertyMapping permission_required = "authentik_core.change_propertymapping" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Property Mapping") @@ -59,7 +59,7 @@ class PropertyMappingDeleteView( model = PropertyMapping permission_required = "authentik_core.delete_propertymapping" - + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Property Mapping") diff --git a/authentik/admin/views/providers.py b/authentik/admin/views/providers.py index 71394c18a..3dcc59d59 100644 --- a/authentik/admin/views/providers.py +++ b/authentik/admin/views/providers.py @@ -25,7 +25,7 @@ class ProviderCreateView( model = Provider permission_required = "authentik_core.add_provider" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Provider") @@ -40,7 +40,7 @@ class ProviderUpdateView( model = Provider permission_required = "authentik_core.change_provider" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Provider") @@ -52,6 +52,6 @@ class ProviderDeleteView( model = Provider permission_required = "authentik_core.delete_provider" - + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Provider") diff --git a/authentik/admin/views/sources.py b/authentik/admin/views/sources.py index 5bc002ced..c9c4fef2b 100644 --- a/authentik/admin/views/sources.py +++ b/authentik/admin/views/sources.py @@ -26,6 +26,7 @@ class SourceCreateView( model = Source permission_required = "authentik_core.add_source" + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Source") @@ -41,6 +42,7 @@ class SourceUpdateView( model = Source permission_required = "authentik_core.change_source" + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Source") @@ -51,5 +53,6 @@ class SourceDeleteView(LoginRequiredMixin, PermissionRequiredMixin, DeleteMessag model = Source permission_required = "authentik_core.delete_source" + success_url = "/" template_name = "generic/delete.html" success_message = _("Successfully deleted Source")