12 lines
170 B
Ruby
12 lines
170 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Sidebars
|
||
|
module Concerns
|
||
|
module RenderIfLoggedIn
|
||
|
def render?
|
||
|
!!context.current_user
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|