This website requires JavaScript.
Explore
Help
Sign In
tsv
/
tabletop-companion
Watch
1
Star
0
Fork
You've already forked tabletop-companion
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
2f940fab13
tabletop-companion
/
app
/
helpers
/
sessions_helper.rb
8 lines
111 B
Ruby
Raw
Normal View
History
Unescape
Escape
Enable frozen_string_literal cop
2024-05-26 10:45:10 +00:00
# frozen_string_literal: true
Sessions!
2024-04-21 14:01:10 +00:00
module
SessionsHelper
def
logged_in?
session
[
:user_id
]
.
present?
end
end