Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ddpui/core/reports/report_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ def get_sharing_status(snapshot_id: int, org: Org, orguser: OrgUser) -> dict:
snapshot = ReportService.get_snapshot(snapshot_id, org)

if snapshot.created_by != orguser:
raise SnapshotPermissionError("Only report creators can view sharing settings")
raise SnapshotPermissionError("Only Report creators can share with others")

response_data = {
"is_public": snapshot.is_public,
Expand Down
Loading