otwarchive-symphonyarchive/app/controllers/menu_controller.rb
2026-03-11 22:22:11 +00:00

23 lines
No EOL
401 B
Ruby

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