Skip to content
Snippets Groups Projects
Select Git revision
  • 3bf16bc5cd476c5a6f07c13a76e2d7e48298290f
  • master default protected
  • fix-6.13.0
  • 6.7.0-fix
  • bookworm
  • 6.4.4-oauth-fix
  • meteor-fix
  • patch-support
  • 7.10.0 protected
  • 7.9.3 protected
  • 7.4.5 protected
  • 7.5.4 protected
  • 7.6.5 protected
  • 7.7.8 protected
  • 7.8.4 protected
  • 7.9.1 protected
  • 7.9.0 protected
  • 7.7.7 protected
  • 7.8.3 protected
  • 7.7.6 protected
  • 7.8.2 protected
  • 7.7.5 protected
  • 7.8.1 protected
  • 7.8.0 protected
  • 7.3.6 protected
  • 7.4.4 protected
  • 7.5.3 protected
  • 7.6.4 protected
28 results

rocketchat-follower@.service

Blame
  • cronotab.rb 553 B
    # cronotab.rb — Crono configuration file
    #
    # Here you can specify periodic jobs and schedule.
    # You can use ActiveJob's jobs from `app/jobs/`
    # You can use any class. The only requirement is that
    # class should have a method `perform` without arguments.
    #
    # class TestJob
    #   def perform
    #     puts 'Test!'
    #   end
    # end
    #
    # Crono.perform(TestJob).every 2.days, at: '15:30'
    #
    
    Crono.perform(FetchConferenceDataJob, 'rp2024').every 5.minutes
    Crono.perform(TelegramNotifyUpcomingJob, { offset: 15.minutes.to_i, interval: 1.minute.to_i }).every 1.minute