bookstore/app/controllers/sessions_controller.rb
2021-03-20 14:23:06 +01:00

10 lines
110 B
Ruby

class SessionsController < ApplicationController
def new
end
def create
end
def welcome
end
end