mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
- Cache campaigns for better performance - Fix N+1 queries in inbox members - Remove unused related articles
8 lines
235 B
Ruby
8 lines
235 B
Ruby
class Api::V1::Widget::InboxMembersController < Api::V1::Widget::BaseController
|
|
skip_before_action :set_contact
|
|
|
|
def index
|
|
@inbox_members = @web_widget.inbox.inbox_members.includes(user: { avatar_attachment: :blob })
|
|
end
|
|
end
|