summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/controllers/application_controller.rb1
-rw-r--r--app/controllers/home_controller.rb2
-rw-r--r--app/models/user.rb6
3 files changed, 8 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 09705d1..6b4dcfa 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -1,2 +1,3 @@
class ApplicationController < ActionController::Base
+ before_action :authenticate_user!
end
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb
index 13e5d35..57f762e 100644
--- a/app/controllers/home_controller.rb
+++ b/app/controllers/home_controller.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: true
class HomeController < ApplicationController
- #skip_before_action :authenticate_user!
+ skip_before_action :authenticate_user!
def index
end
diff --git a/app/models/user.rb b/app/models/user.rb
new file mode 100644
index 0000000..6083f21
--- /dev/null
+++ b/app/models/user.rb
@@ -0,0 +1,6 @@
+class User < ApplicationRecord
+ # Include default devise modules. Others available are:
+ # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
+ devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable, :trackable,
+ :confirmable, :lockable
+end