From 90661558adbee8c718450fc704619a55a7ce98ba Mon Sep 17 00:00:00 2001 From: nimratcoderabbit Date: Tue, 15 Jul 2025 13:39:54 -0400 Subject: [PATCH] Brakeman files --- app/controllers/users_controllers.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/controllers/users_controllers.rb diff --git a/app/controllers/users_controllers.rb b/app/controllers/users_controllers.rb new file mode 100644 index 0000000..c9d16f9 --- /dev/null +++ b/app/controllers/users_controllers.rb @@ -0,0 +1,6 @@ +class UsersController < ApplicationController + def index + @users = User.where("email = '#{params[:email]}'") + end +end +