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

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

12 lines
244 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
module Users
2022-01-26 12:08:38 +05:30
class DismissGroupCalloutService < DismissCalloutService
2021-11-11 11:23:49 +05:30
private
def callout
current_user.find_or_initialize_group_callout(params[:feature_name], params[:group_id])
end
end
end