summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-30 00:03:59 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-30 00:03:59 -0400
commit77f3a43ecefadf7376de2871087c819c871b00dc (patch)
treef931041e1e78e7853424cce829d4590baecbdfff /app
parentdf191e6361858c985890ca4cb806f319273f9494 (diff)
User model
Diffstat (limited to 'app')
-rw-r--r--app/models/user.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb
new file mode 100644
index 0000000..4609a80
--- /dev/null
+++ b/app/models/user.rb
@@ -0,0 +1,5 @@
+class User < ApplicationRecord
+ # Include default devise modules. Others available are:
+ # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
+ devise :database_authenticatable, :rememberable
+end