Skip to content

Instantly share code, notes, and snippets.

@mikecmpbll
Created March 14, 2014 13:54
Show Gist options
  • Save mikecmpbll/9548089 to your computer and use it in GitHub Desktop.
Save mikecmpbll/9548089 to your computer and use it in GitHub Desktop.
class AgenciesController
def new
@client = Client.find(params[:client_id])
@agency = @client.agencies.new
end
end
resources :clients do
resources :agencies
resources :categories
resources :users
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment