7 lines
197 B
Ruby
7 lines
197 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Explore::ApplicationController < ApplicationController
|
|
skip_before_action :authenticate_user!, unless: :public_visibility_restricted?
|
|
|
|
layout 'explore'
|
|
end
|