| 
237
238
239
240
241
242 | # File 'lib/openc3/models/trigger_model.rb', line 237
def activate
  @active = true
  @updated_at = Time.now.to_nsec_from_epoch
  Store.hset(@primary_key, @name, JSON.generate(as_json(:allow_nan => true)))
  notify(kind: 'activated')
end |