Skip to content
Snippets Groups Projects
Select Git revision
  • 4a4a3c7caa10e6a0def39dfb3deba854f8a376a1
  • master default protected
  • jwt_encode_inconsistencies
  • recovery-code-pwhash
  • incremental-sync
  • redis-rate-limits
  • typehints
  • v1.2.x
  • v1.x.x
  • v1.1.x
  • feature_invite_validuntil_minmax
  • Dockerfile
  • v1.0.x
  • roles-recursive-cte
  • v2.3.1
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.2.0
  • v1.1.2
  • v1.1.1
  • v1.0.2
  • v1.1.0
  • v1.0.1
  • v1.0.0
  • v0.3.0
  • v0.2.0
  • v0.1.5
  • v0.1.4
  • v0.1.2
32 results

views.py

Blame
  • Forked from uffd / uffd
    Source project has a limited visibility.
    cronotab.rb 620 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, "38c3").every 5.minutes
    Crono.perform(FetchConferenceDataJob, "38c3-more").every 5.minutes
    # Crono.perform(TelegramNotifyUpcomingJob, { offset: 15.minutes.to_i, interval: 1.minute.to_i }).every 1.minute