Files
danbooru/app/controllers/forum_posts_controller.rb

20 lines
176 B
Ruby

class ForumPostsController < ApplicationController
def new
end
def edit
end
def show
end
def create
end
def update
end
def destroy
end
end