Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question
please post your controller 'show' and show.html.erb view – citraL Feb 23 '12 at 8:43
Please show your codes – Shamith c Feb 23 '12 at 9:22
i have updated the question please take a look – Jeet Robert Feb 23 '12 at 14:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.