mirror of
https://github.com/System-End/highway.git
synced 2026-04-19 05:30:29 +00:00
9 lines
325 B
Ruby
9 lines
325 B
Ruby
class ApplicationController < ActionController::Base
|
|
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.
|
|
allow_browser versions: :modern
|
|
|
|
private
|
|
def current_user
|
|
@current_user ||= User.find_by(id: session[:user_id]) if session[:user_id]
|
|
end
|
|
end
|