mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
12 lines
251 B
Ruby
12 lines
251 B
Ruby
class UsersController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
|
def index
|
|
@users = User.sort(:created_at.desc).all
|
|
end
|
|
def show
|
|
@user= Person.where(:id => params[:id]).first
|
|
@user_profile = @user.profile
|
|
end
|
|
end
|