I have @user = current_user in my controller-show method. but when i use Created by @user.email in the views it changes with every login where as i want it to show the user who created/made that edit.
so how do i save the current_user into database so i can show the appropriate user who made the edit ?
update : here is the code
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