12 lines
219 B
Ruby
12 lines
219 B
Ruby
module Badges
|
|
class UpdateService < Badges::BaseService
|
|
# returns the updated badge
|
|
def execute(badge)
|
|
if params.present?
|
|
badge.update_attributes(params)
|
|
end
|
|
|
|
badge
|
|
end
|
|
end
|
|
end
|