retrospring/app/controllers/static_controller.rb
2022-07-18 23:24:05 +02:00

41 lines
838 B
Ruby

# frozen_string_literal: true
class StaticController < ApplicationController
def about
user_count = User
.where.not(confirmed_at: nil)
.where("answered_count > 0")
.count
current_ban_count = UserBan
.current
.joins(:user)
.where.not("users.confirmed_at": nil)
.where("users.answered_count > 0")
.count
@users = user_count - current_ban_count
@questions = Question.count
@answers = Answer.count
@comments = Comment.count
@smiles = Appendable::Reaction.count
end
def linkfilter
redirect_to root_path unless params[:url]
@link = params[:url]
end
def faq
end
def privacy_policy
end
def terms
end
end