This is an automated email from the ASF dual-hosted git repository.
villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 52563d3eea fix: Update 'Last modified' time when modifying RLS rules
(#32227)
52563d3eea is described below
commit 52563d3eea98ec134499f0b3fcea9d37d696c6e7
Author: Fardin Mustaque <[email protected]>
AuthorDate: Thu Feb 13 01:52:15 2025 +0530
fix: Update 'Last modified' time when modifying RLS rules (#32227)
Co-authored-by: Fardin Mustaque <[email protected]>
---
superset/row_level_security/schemas.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/row_level_security/schemas.py
b/superset/row_level_security/schemas.py
index 04d7d9b9df..3bb0e8337c 100644
--- a/superset/row_level_security/schemas.py
+++ b/superset/row_level_security/schemas.py
@@ -78,7 +78,7 @@ class RLSListSchema(Schema):
tables = fields.List(fields.Nested(TablesSchema))
clause = fields.String(metadata={"description": "clause_description"})
changed_on_delta_humanized = fields.Function(
- RowLevelSecurityFilter.created_on_delta_humanized
+ RowLevelSecurityFilter.changed_on_delta_humanized
)
group_key = fields.String(metadata={"description":
"group_key_description"})
description = fields.String(metadata={"description":
"description_description"})