mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
27 lines
342 B
Ruby
27 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
|