femslash-city/models/report.rb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

9 lines
No EOL
218 B
Ruby

class Report < Sequel::Model
many_to_one :site
many_to_one :reporting_site, class: :Site
def site_file
return nil unless site_file_path && site
site.site_files_dataset.where(path: site_file_path).first
end
end