mirror of
https://github.com/discourse/discourse.git
synced 2025-02-24 23:49:38 +08:00
9 lines
190 B
Ruby
9 lines
190 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class Admin::UnknownReviewablesController < Admin::AdminController
|
||
|
def destroy
|
||
|
Reviewable.destroy_unknown_types!
|
||
|
render json: success_json
|
||
|
end
|
||
|
end
|