From 48847d0a6b1ecddcdfcb15ad4bea0792892d4261 Mon Sep 17 00:00:00 2001 From: tienyuan Date: Tue, 16 Aug 2022 18:29:58 +0800 Subject: [PATCH 1/5] test0816 --- test0816.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 test0816.md diff --git a/test0816.md b/test0816.md new file mode 100644 index 0000000..0cd4b08 --- /dev/null +++ b/test0816.md @@ -0,0 +1 @@ +test0816 \ No newline at end of file From c874d4f40122a34a432bd83b053f0dac19b08233 Mon Sep 17 00:00:00 2001 From: tienyuan Date: Tue, 16 Aug 2022 20:53:37 +0800 Subject: [PATCH 2/5] test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7db80e4..27aeaf4 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,5 @@ Things you may want to cover: * Deployment instructions * ... + +* test \ No newline at end of file From 38ac6a6230936943c650593f40c8d1e93288fea4 Mon Sep 17 00:00:00 2001 From: tienyuan Date: Tue, 16 Aug 2022 21:06:53 +0800 Subject: [PATCH 3/5] testetest --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 27aeaf4..e4d1123 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ Things you may want to cover: * ... -* test \ No newline at end of file +* test test \ No newline at end of file From 4ff7f1eea9f918db41902d0b45b060da2437d10d Mon Sep 17 00:00:00 2001 From: Ker ker Date: Fri, 19 Aug 2022 02:14:56 +0800 Subject: [PATCH 4/5] Update routes.rb --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes.rb b/config/routes.rb index 54b04d7..28c2857 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,5 @@ Rails.application.routes.draw do devise_for :users # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html + root to: "pages#home" end From 8aa3b0b116bd74a63cf8b9bb9f50a29e187fd014 Mon Sep 17 00:00:00 2001 From: Ker ker Date: Fri, 19 Aug 2022 02:24:26 +0800 Subject: [PATCH 5/5] Update application_controller.rb --- app/controllers/application_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 09705d1..cfb0a0a 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,2 +1,3 @@ class ApplicationController < ActionController::Base + include Pundit::Authorization end