Skip to content

Instantly share code, notes, and snippets.

@jamesjtong
Last active August 29, 2015 13:57
Show Gist options
  • Save jamesjtong/9348830 to your computer and use it in GitHub Desktop.
Save jamesjtong/9348830 to your computer and use it in GitHub Desktop.
json params passing in through advanced rest client of postman
class Api::V1::FightController < Api::BaseController
...
private
def permitted_params
params.permit(
{date: [
:timezone,
:start,
:end
]},
action:[
:type,
:result
]}
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment