tiss2go/app/controllers/login_controller.rb
2020-04-06 20:40:13 +02:00

23 lines
182 B
Ruby

class LoginController < ApplicationController
def index
end
def show
end
def new
end
def edit
end
def create
end
def update
end
def destroy
end
end