diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-12-12 14:06:51 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-12-12 16:47:07 +0000 |
commit | 12aca5dd819653e596f7c13e587e6e7967d6ded3 (patch) | |
tree | dc709eca4bdef1a0f5915c81703067440c03ca59 /app/helpers/admin_helper.rb | |
parent | 64e636fee3651f5f6c9d3e34bd1260d546e11ce7 (diff) |
Use RESTful routing for index and show actions
Diffstat (limited to 'app/helpers/admin_helper.rb')
-rw-r--r-- | app/helpers/admin_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb index 151e53758..10b259ef5 100644 --- a/app/helpers/admin_helper.rb +++ b/app/helpers/admin_helper.rb @@ -21,7 +21,7 @@ module AdminHelper def request_both_links(info_request) link_to(eye, request_path(info_request), :title => "view request on public website") + " " + - link_to(info_request.title, admin_request_show_path(info_request), :title => "view full details") + link_to(info_request.title, admin_request_path(info_request), :title => "view full details") end def public_body_both_links(public_body) |