diff --git a/authentik/admin/views/applications.py b/authentik/admin/views/applications.py index abaaa4292..336d63a81 100644 --- a/authentik/admin/views/applications.py +++ b/authentik/admin/views/applications.py @@ -27,6 +27,7 @@ class ApplicationCreateView( form_class = ApplicationForm permission_required = "authentik_core.add_application" + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Application") @@ -44,6 +45,7 @@ class ApplicationUpdateView( form_class = ApplicationForm permission_required = "authentik_core.change_application" + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Application") @@ -56,5 +58,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 7cb2fc390..f94dc7bd7 100644 --- a/authentik/admin/views/events_notifications_rules.py +++ b/authentik/admin/views/events_notifications_rules.py @@ -27,6 +27,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") @@ -44,6 +45,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") @@ -56,5 +58,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 d211831ed..1287d38d2 100644 --- a/authentik/admin/views/events_notifications_transports.py +++ b/authentik/admin/views/events_notifications_transports.py @@ -26,7 +26,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") @@ -43,7 +43,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") @@ -55,6 +55,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 fb9eee561..c9042c51b 100644 --- a/authentik/admin/views/outposts.py +++ b/authentik/admin/views/outposts.py @@ -29,7 +29,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") @@ -53,7 +53,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") @@ -63,6 +63,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 ca6b2796f..4ef5422de 100644 --- a/authentik/admin/views/property_mappings.py +++ b/authentik/admin/views/property_mappings.py @@ -34,7 +34,7 @@ class PropertyMappingCreateView( model = PropertyMapping permission_required = "authentik_core.add_propertymapping" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Property Mapping") @@ -50,7 +50,7 @@ class PropertyMappingUpdateView( model = PropertyMapping permission_required = "authentik_core.change_propertymapping" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Property Mapping") @@ -62,7 +62,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 76eefa839..f6d15e8a4 100644 --- a/authentik/admin/views/providers.py +++ b/authentik/admin/views/providers.py @@ -27,7 +27,7 @@ class ProviderCreateView( model = Provider permission_required = "authentik_core.add_provider" - + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Provider") @@ -43,7 +43,7 @@ class ProviderUpdateView( model = Provider permission_required = "authentik_core.change_provider" - + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Provider") @@ -55,6 +55,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 7ebe243b8..566a083a7 100644 --- a/authentik/admin/views/sources.py +++ b/authentik/admin/views/sources.py @@ -28,6 +28,7 @@ class SourceCreateView( model = Source permission_required = "authentik_core.add_source" + success_url = "/" template_name = "generic/create.html" success_message = _("Successfully created Source") @@ -44,6 +45,7 @@ class SourceUpdateView( model = Source permission_required = "authentik_core.change_source" + success_url = "/" template_name = "generic/update.html" success_message = _("Successfully updated Source") @@ -54,5 +56,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")