2020-01-21 14:11:58 +00:00
|
|
|
class Api::V1::Widget::InboxMembersController < Api::V1::Widget::BaseController
|
2020-06-07 08:28:05 +00:00
|
|
|
skip_before_action :set_contact
|
2020-01-21 14:11:58 +00:00
|
|
|
|
|
|
|
def index
|
|
|
|
@inbox_members = @web_widget.inbox.inbox_members.includes(:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def permitted_params
|
|
|
|
params.permit(:website_token)
|
|
|
|
end
|
|
|
|
end
|