Skip to content

Instantly share code, notes, and snippets.

@nemrow
Created November 11, 2014 01:52
Show Gist options
  • Save nemrow/487a8f094deff6c42889 to your computer and use it in GitHub Desktop.
Save nemrow/487a8f094deff6c42889 to your computer and use it in GitHub Desktop.
class ProjectsController < ApplicationController
def create
Project.create(project_params)
end
def project_params
params.require(:project).permit(
:name,
:tags [
:id,
:tag_name
]
)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment