blob: 13b2d64cd1c68f326800296e37197d4038c73172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# app/controllers/user_controller.rb:
# Show information about a user.
#
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
# $Id: user_controller.rb,v 1.2 2007-10-09 17:29:43 francis Exp $
class UserController < ApplicationController
def index
@display_users = User.find(:all, :conditions => [ "name = ?", params[:name] ])
end
private
end
|