Fix uncaught NoMethodError in POST `/api/v1/featured_tags` (#25063)

local
Daniel M Brasil 1 year ago committed by GitHub
parent 2a61f14753
commit 45d98959ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/controllers/api/v1/featured_tags_controller.rb

@ -33,6 +33,6 @@ class Api::V1::FeaturedTagsController < Api::BaseController
end
def featured_tag_params
params.permit(:name)
params.require(:name)
end
end

Loading…
Cancel
Save