debian-mirror-gitlab/app/services/badges/update_service.rb
2018-03-27 19:54:05 +05:30

13 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