5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 10:30:49 +00:00
panel/app/models/build_stat.rb
2019-08-01 21:20:42 -03:00

9 lines
218 B
Ruby

# frozen_string_literal: true
# Recolecta estadísticas durante la generación del sitio
class BuildStat < ApplicationRecord
belongs_to :deploy
scope :jekyll, -> { where(action: 'bundle_exec_jekyll_build') }
end