プロファイルを入力していないユーザーを編集ページにリダイレクトしようとしています。
ユーザー (デバイス ハンドル) とプロファイルの 2 つのテーブルがあります。
プロフィールには profile_complete という行があります
私のユーザーモデルでは、profile_complete のブール値を取り、それを返す profile_complete というメソッドを定義しようとしています。
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :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 :profiles, :dependent => :destroy
def profile_complete?
self.profile.profile_complete == true
end
end
しかし、 profile_complete メソッドの行が何であるかを理解できないようです。他のビットは正しい場所で動作していますが、この変数を取得できません 何か助けはありますか? 乾杯 :)