質問編集履歴
1
Userモデルを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -74,6 +74,20 @@
|
|
74
74
|
|
75
75
|
|
76
76
|
|
77
|
+
|
78
|
+
|
79
|
+
class User < ApplicationRecord
|
80
|
+
|
81
|
+
validates :name, presence: true, length: {maximum: 20 }
|
82
|
+
|
83
|
+
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+.[a-z]+\z/i
|
84
|
+
|
85
|
+
validates :email, presence: true, length: { maximum: 255}, format: { with: VALID_EMAIL_REGEX }
|
86
|
+
|
87
|
+
validates :password, presence: true
|
88
|
+
|
89
|
+
end
|
90
|
+
|
77
91
|
```
|
78
92
|
|
79
93
|
参考とうして、gemファイルのgem 'bcrypt', '~> 3.1.7'がサーバーで起動できなかったため、パスワードの確認はしておりません
|