Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Fixed unclosed block
Browse files Browse the repository at this point in the history
  • Loading branch information
nbibler committed Mar 5, 2010
1 parent 1f56e59 commit daa83ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/blue_light_special/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ def self.draw(map)
:controller => 'blue_light_special/sessions',
:only => [:new, :create, :destroy]

map.resources :users, :controller => 'blue_light_special/users'
map.resources :users, :controller => 'blue_light_special/users' do |users|
users.resource :password,
:controller => 'blue_light_special/passwords',
:only => [:create, :edit, :update]
end

map.resources :impersonation,
:controller => 'blue_light_special/impersonations',
Expand Down

0 comments on commit daa83ca

Please sign in to comment.