sample_rails_tailwind/app/controllers/static_pages_controller.rb

11 lines
110 B
Ruby
Raw Normal View History

2024-12-29 17:22:48 +08:00
class StaticPagesController < ApplicationController
def home
end
def help
end
def about
end
end