forked from e621ng/e621ng
10 lines
179 B
Ruby
10 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StatsController < ApplicationController
|
|
respond_to :html
|
|
|
|
def index
|
|
@stats = JSON.parse(Cache.redis.get("e6stats") || "{}")
|
|
end
|
|
end
|