2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
class Explore::ApplicationController < ApplicationController
|
2020-04-15 11:09:17 -04:00
|
|
|
skip_before_action :authenticate_user!, unless: :public_visibility_restricted?
|
2015-09-08 09:49:20 -04:00
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
layout 'explore'
|
2015-04-30 13:06:18 -04:00
|
|
|
end
|