I am creating groups in rails app and need to save the user to database (i think so at least) so that i can show created by user email on the show page. I cant use current_user because it changes with every login. below is the code which i use and results in ActiveRecord::RecordNotFound in GroupsController . So i need to know how do i save the user to database (if thats the right way) to make this work correctly or how do i make it work correctly ?
user model
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me
has_many :groups
end
group model
class Group < ActiveRecord::Base
belongs_to :user
end
devise-user migration (only the necessary part)
t.has_many :groups
group migration
t.belongs_to :user
group controller create method
def create
@user = User.find(params[:id])
@group = @user.groups.build(params[:id])
respond_to do |format|
if @group.save
format.html { redirect_to @group, notice: 'Group was successfully created.' }
format.json { render json: @group, status: :created, location: @group }
else
format.html { render action: "new" }
format.json { render json: @group.errors, status: :unprocessable_entity }
end
end
end
group controller new method
def new
@user = User.find(params[:id])
@group = @user.groups.build(params[:id])
respond_to do |format|
format.html # new.html.erb
format.json { render json: @group }
end
end