Skip to content

Instantly share code, notes, and snippets.

View rockkhuya's full-sized avatar

Luu Tuan Anh rockkhuya

View GitHub Profile
@BGuimberteau
BGuimberteau / strong_params_helpers.rb
Last active May 18, 2018 08:25
Strong parameters with grape
module StrongParamsHelpers
extend Grape::API::Helpers
def permitted_params
@permitted_params ||= declared(params, include_missing: false, include_parent_namespaces: false)
end
end