pond / trackrecord

TrackRecord is a Ruby On Rails application which lets users enter and analyse timesheets, based around a framework of customers, projects and tasks. It may be useful for sole traders and small businesses.
BSD 3-Clause "New" or "Revised" License
12 stars 6 forks source link

Action "home" should be in its own controller #38

Open pond opened 10 years ago

pond commented 10 years ago

Internal - UsersController handles this right now. It isn't obvious at all without reading routes.rb because there's not even any supporting code - it just runs off Rails default rendering behaviour. The only reason it's an issue is that before_filter-style stuff in UsersController needs to be aware that there's an implicit, but invisible home action. It's nasty and not RESTful, so needs cleaning up.