theseus/app/controllers/static_pages_controller.rb
2025-05-31 23:25:41 -04:00

11 lines
223 B
Ruby

class StaticPagesController < ApplicationController
skip_before_action :authenticate_user!, only: [:login]
skip_after_action :verify_authorized
def index
end
def login
render :login, layout: false
end
end