Używam Rails 5 API z devise. Mam model User
. Schemat wygląda tak.Rails 5 obiektów modelu nie pokazujących wszystkich atrybutów Devise
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
end
Ale problem mam jest Szyny pokazując tylko :id , :email , :created_at , :updated_at
atrybuty jako część modelu. Na przykład w konsoli szynowej
User.new
=> #<User id: nil, email: "", created_at: nil, updated_at: nil>
User.first
User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]]
=> #<User id: 2, email: "[email protected]", created_at: "2016-09-22 03:58:04", updated_at: "2016-09-22 04:54:41">
Ale te atrybuty istnieją w bazie danych. Ten problem został wspomniany wcześniej. Devise with rails 5. Ale nie ma tam odpowiedzi. Pomóżcie.
'User.first.to_json' –