mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
11 lines
223 B
Ruby
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
|