feat: CRUD for adding/deleting semantic views

This commit is contained in:
Beto Dealmeida
2026-03-04 10:56:44 -05:00
parent 4337f48f31
commit ac7a1034fd
11 changed files with 1277 additions and 275 deletions

View File

@@ -66,3 +66,11 @@ class SemanticLayerUpdateFailedError(UpdateFailedError):
class SemanticLayerDeleteFailedError(DeleteFailedError):
message = _("Semantic layer could not be deleted.")
class SemanticViewCreateFailedError(CreateFailedError):
message = _("Semantic view could not be created.")
class SemanticViewDeleteFailedError(DeleteFailedError):
message = _("Semantic view could not be deleted.")