mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 23:22:53 +00:00
10 lines
195 B
Ruby
10 lines
195 B
Ruby
class StaticPagesController < ApplicationController
|
|
skip_before_action :require_authentication!, only: [:login]
|
|
|
|
def home
|
|
end
|
|
|
|
def login
|
|
redirect_to home_path if signed_in?
|
|
end
|
|
end
|