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-01-06 19:23:57 +01:00
|
|
|
@software_updates = SoftwareUpdate.by_version
|
2023-09-01 17:47:07 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_enabled!
|
|
|
|
not_found unless SoftwareUpdate.check_enabled?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|