price-point-api/app/controllers/sessions_controller.rb

13 lines
196 B
Ruby
Raw Normal View History

2026-06-10 15:51:32 +00:00
class SessionsController < ApplicationController
before_action :authenticate_user, only: [:destroy]
def create
user = User.find_by(email: params[:email])
end
def destroy
end
end