aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/user_controller.rb
blob: 3daab06709f85e28742e3cd5c669730fb04112af (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.4 2007-10-30 14:49:08 francis Exp $

class UserController < ApplicationController
    def show
        @display_users = User.find(:all, :conditions => [ "name = ?", params[:name] ], :order => "created_at desc")
    end

    private

end