Files
danbooru/app/controllers/notes_controller.rb

17 lines
155 B
Ruby

class NotesController < ApplicationController
def index
end
def show
end
def create
end
def update
end
def destroy
end
end