mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
* Chore: Code Cleanup in API controllers * Remove unnecessary scoping for accounts controller
14 lines
281 B
Ruby
14 lines
281 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)
|
|
end
|
|
|
|
private
|
|
|
|
def permitted_params
|
|
params.permit(:website_token)
|
|
end
|
|
end
|