Skip to content
Merged
Show file tree
Hide file tree
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 build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'com.flexcodelabs'
version = '0.0.62'
version = '0.0.63'
description = 'Flextuma App'

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ protected org.springframework.data.jpa.repository.JpaRepository<SmsLog, UUID> ge

@Override
protected String getReadPermission() {
return SmsLog.READ;
// Each log is tenant-scoped by BaseService (TenantAwareSpecification), so every
// signed-in user reads only their own org's logs -- no separate READ_SMS_LOGS
// privilege is needed, matching WhatsAppInboxMessageService's read access.
return "ALL";
}

@Override
Expand Down