53 54 55 56 57 58
# File 'lib/openc3/models/trigger_model.rb', line 53 def self.create_mini_id time = (Time.now.to_f * 10_000_000).to_i jitter = rand(10_000_000) key = "#{jitter}#{time}".to_i.to_s(36) return "TV0-#{key}" end