mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
* Simplify provider concerns * Update tests * Add UI warning for missing Synth key if family requires external data
14 lines
304 B
Ruby
14 lines
304 B
Ruby
module Upgrader::Provided
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
private
|
|
def fetch_latest_upgrade_candidates_from_provider
|
|
git_repository_provider.fetch_latest_upgrade_candidates
|
|
end
|
|
|
|
def git_repository_provider
|
|
Provider::Github.new
|
|
end
|
|
end
|
|
end
|