A tool for measuring the coverage of Bluesky/ATProto relays
at master 8 lines 204 B view raw
1class Report < ActiveRecord::Base 2 enum :source_type, { 3 jetstream: 'jetstream', 4 firehose: 'firehose' 5 } 6 7 validates_presence_of :start_time, :host, :duration, :users, :events, :source_type 8end