2023-09-01 17:47:07 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class SoftwareUpdatesController < BaseController
|
|
|
|
before_action :check_enabled!
|
|
|
|
|
|
|
|
def index
|
|
|
|
authorize :software_update, :index?
|
2025-02-12 15:27:42 +01:00
|
|
|
@software_updates = SoftwareUpdate.by_version.filter(&:pending?)
|
2023-09-01 17:47:07 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_enabled!
|
|
|
|
not_found unless SoftwareUpdate.check_enabled?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|