Saving the user and subject id automatically

114 Views Asked by At

I have this Models and if I'm going to create a post. I want to automatically save the user id and the subject id. But it's not happening what I know is it automatically store the user_id and the subject_id . Can someone explain me why and better if you can help me. :)

    class Post
  include Mongoid::Document

  field :content, type: String

  belongs_to :subject, autosave: true
  belongs_to :user , autosave: true
  has_many :comments , dependent: :delete
  embeds_many :video_attachments , inverse_of: :post
  accepts_nested_attributes_for :video_attachments, autosave: true
  accepts_nested_attributes_for :comments, autosave: true
  accepts_nested_attributes_for :user, autosave: true

end

require "mongoid/token"
class Subject
  include Mongoid::Document
  include Mongoid::Token

  field :title , type: String
  field :desc , type: String
  field :instructor_id , type: String
  field :students , type: Array

  has_many :user
  has_many :post
  token length: 6

end

class User
  include Mongoid::Document

  field :id_number , type: String
  field :crypted_password , type: String
  field :salt , type: String
  field :fname , type: String
  field :lname , type: String
  field :mname , type: String

  #relations
  belongs_to :subject , polymorphic: true
  has_one :user_detail 
  has_many :posts
  has_many :comments
  accepts_nested_attributes_for :posts , autosave: true
  accepts_nested_attributes_for :user_detail , autosave: true

end
class PostsController < ApplicationController
  def create
    @post = Post.new(data)
    if @post.save
      redirect_to root_url 
    end
  end

  private
  def data
    params.require(:post).permit(:content, :posted_by , video_attachments_attributes: [:id , :video], user_attributes: [:id], subject_attributes: [:id])
  end

end

0

There are 0 best solutions below