mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 12:42:16 +08:00
11 lines
282 B
Ruby
11 lines
282 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::AdminNoticesController < Admin::StaffController
|
|
def destroy
|
|
AdminNotices::Dismiss.call(service_params) do
|
|
on_success { render(json: success_json) }
|
|
on_failure { render(json: failed_json, status: 422) }
|
|
end
|
|
end
|
|
end
|