0
0
Fork 0

Use expect for admin/ controllers (#33686)

This commit is contained in:
Matt Jankowski 2025-01-27 09:05:16 -05:00 committed by GitHub
parent 59384282ed
commit 65d9171c7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
57 changed files with 551 additions and 41 deletions

View file

@ -84,6 +84,7 @@ class Admin::AnnouncementsController < Admin::BaseController
end
def resource_params
params.require(:announcement).permit(:text, :scheduled_at, :starts_at, :ends_at, :all_day)
params
.expect(announcement: [:text, :scheduled_at, :starts_at, :ends_at, :all_day])
end
end