mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 04:27:53 +00:00
14 lines
279 B
Ruby
14 lines
279 B
Ruby
class Api::V1::Widget::InboxMembersController < Api::V1::Widget::BaseController
|
|
before_action :set_web_widget
|
|
|
|
def index
|
|
@inbox_members = @web_widget.inbox.inbox_members.includes(:user)
|
|
end
|
|
|
|
private
|
|
|
|
def permitted_params
|
|
params.permit(:website_token)
|
|
end
|
|
end
|