mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 09:44:06 +08:00
9 lines
191 B
Ruby
Vendored
9 lines
191 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class SyncPatronGroups < ::Jobs::Base
|
|
def execute(args)
|
|
Patreon::Patron.sync_groups_by(patreon_id: args[:patreon_id])
|
|
end
|
|
end
|
|
end
|