mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14799 Fix sync of scripts from data source (#15303)
* 14799 fix script creation from data-source * 14799 dont cache module_scripts * 14799 fix sync_classes call
This commit is contained in:
@@ -89,6 +89,9 @@ class ManagedFile(SyncedDataMixin, models.Model):
|
||||
def clean(self):
|
||||
super().clean()
|
||||
|
||||
if self.data_file and not self.file_path:
|
||||
self.file_path = os.path.basename(self.data_path)
|
||||
|
||||
# Ensure that the file root and path make a unique pair
|
||||
if self._meta.model.objects.filter(file_root=self.file_root, file_path=self.file_path).exclude(pk=self.pk).exists():
|
||||
raise ValidationError(
|
||||
|
Reference in New Issue
Block a user