debian-mirror-gitlab/app/services/users/dismiss_callout_service.rb

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

18 lines
345 B
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# frozen_string_literal: true
module Users
2022-01-26 12:08:38 +05:30
class DismissCalloutService < BaseContainerService
2021-04-17 20:07:23 +05:30
def execute
2021-11-11 11:23:49 +05:30
callout.tap do |record|
record.update(dismissed_at: Time.current) if record.valid?
2021-04-17 20:07:23 +05:30
end
end
2021-11-11 11:23:49 +05:30
private
def callout
current_user.find_or_initialize_callout(params[:feature_name])
end
2021-04-17 20:07:23 +05:30
end
end