Files
danbooru/app/controllers/sessions_controller.rb

11 lines
114 B
Ruby

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