debian-mirror-gitlab/app/services/badges/update_service.rb

13 lines
219 B
Ruby
Raw Normal View History

2018-03-27 19:54:05 +05:30
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