2
我有兩個型號,下面的關係,MongoID多對多關係船
Class User
has_and_belongs_to_many :notification_channels
Class NotificationChannel
has_and_belongs_to_many :users
我能夠添加通知通道用戶對象以這種方式
@user.notification_channels << @notification
但是除去用戶的通道頻道將刪除渠道文件從渠道收集與以下查詢
@user.notification_channels.find_by(id: params[:channel_id]).destroy
我如何從用戶頻道中刪除頻道?