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 +