bookstore/app/controllers/sessions_controller.rb

11 lines
110 B
Ruby
Raw Normal View History

2021-03-20 14:23:06 +01:00
class SessionsController < ApplicationController
def new
end
def create
end
def welcome
end
end