dawarich/app/controllers/settings/background_jobs_controller.rb
2024-07-09 20:28:59 +02:00

26 lines
342 B
Ruby

# frozen_string_literal: true
class Settings::BackgroundJobsController < ApplicationController
before_action :authenticate_user!
before_action :authenticate_first_user!
def index
@queues = Sidekiq::Queue.all
end
def show; end
def new
end
def edit; end
def create
end
def update
end
def destroy
end
end