otwarchive-symphonyarchive/app/controllers/menu_controller.rb

23 lines
401 B
Ruby
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
class MenuController < ApplicationController
# about menu
def about
render action: "about", layout: "application"
end
# browse menu
def browse
render action: "browse", layout: "application"
end
# fandoms menu
def fandoms
render action: "fandoms", layout: "application"
end
# search menu
def search
render action: "search", layout: "application"
end
end