mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
15 lines
235 B
Ruby
15 lines
235 B
Ruby
# typed: true
|
|
|
|
class PagesController < ApplicationController
|
|
extend T::Sig
|
|
def home
|
|
if user_signed_in?
|
|
redirect_to dashboard_path
|
|
end
|
|
end
|
|
|
|
def api_docs
|
|
# API documentation page - publicly accessible
|
|
end
|
|
end
|