remove duplicated inheritance model
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
		| @ -85,7 +85,7 @@ class GoogleWorkspaceProviderGroup(SerializerModel): | ||||
|         return f"Google Workspace Provider Group {self.group_id} to {self.provider_id}" | ||||
|  | ||||
|  | ||||
| class GoogleWorkspaceProvider(OutgoingSyncProvider, ScheduledModel, BackchannelProvider): | ||||
| class GoogleWorkspaceProvider(OutgoingSyncProvider, BackchannelProvider): | ||||
|     """Sync users from authentik into Google Workspace.""" | ||||
|  | ||||
|     delegated_subject = models.EmailField() | ||||
|  | ||||
| @ -76,7 +76,7 @@ class MicrosoftEntraProviderGroup(SerializerModel): | ||||
|         return f"Microsoft Entra Provider Group {self.group_id} to {self.provider_id}" | ||||
|  | ||||
|  | ||||
| class MicrosoftEntraProvider(OutgoingSyncProvider, ScheduledModel, BackchannelProvider): | ||||
| class MicrosoftEntraProvider(OutgoingSyncProvider, BackchannelProvider): | ||||
|     """Sync users from authentik into Microsoft Entra.""" | ||||
|  | ||||
|     client_id = models.TextField() | ||||
|  | ||||
| @ -69,7 +69,7 @@ class SCIMCompatibilityMode(models.TextChoices): | ||||
|     SLACK = "slack", _("Slack") | ||||
|  | ||||
|  | ||||
| class SCIMProvider(OutgoingSyncProvider, ScheduledModel, BackchannelProvider): | ||||
| class SCIMProvider(OutgoingSyncProvider, BackchannelProvider): | ||||
|     """SCIM 2.0 provider to create users and groups in external applications""" | ||||
|  | ||||
|     exclude_users_service_account = models.BooleanField(default=False) | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Marc 'risson' Schmitt
					Marc 'risson' Schmitt