gitlab-org--gitlab-foss/app/services/badges/update_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
239 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-03-05 17:51:40 +00:00
module Badges
class UpdateService < Badges::BaseService
# returns the updated badge
def execute(badge)
if params.present?
2018-07-02 10:43:06 +00:00
badge.update(params)
2018-03-05 17:51:40 +00:00
end
badge
end
end
end