Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
8 Zeilen
204 B
Ruby
8 Zeilen
204 B
Ruby
# frozen_string_literal: true
|
|
module Jobs
|
|
class RefreshApiAccessToken < ::Jobs::Base
|
|
def execute(args)
|
|
CustomWizard::Api::Authorization.get_token(args[:name], refresh: true)
|
|
end
|
|
end
|
|
end
|