dawarich/app/controllers/settings/background_jobs_controller.rb

27 lines
342 B
Ruby
Raw Normal View History

2024-07-09 14:28:59 -04:00
# 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